class Syobocal::Comment::MusicData

Attributes

attr[R]
attr_note[R]
attr_text[R]
people[R]
value[R]

Public Class Methods

new(attr, attr_text, attr_note, value, people) click to toggle source
# File lib/syobocal/comment/music_data.rb, line 6
def initialize(attr, attr_text, attr_note, value, people)
  @attr, @attr_text, @attr_note, @value, @people = attr, attr_text, attr_note, value, people
end

Public Instance Methods

==(other) click to toggle source
# File lib/syobocal/comment/music_data.rb, line 10
def ==(other)
  other.instance_of?(self.class) && other.attr == attr && other.attr_text == attr_text && other.attr_note == other.attr_note && other.value == value && other.people == people
end