class Syobocal::Comment::Music
Attributes
category[R]
data_list[R]
title[R]
Public Class Methods
new(title, category, data_list)
click to toggle source
# File lib/syobocal/comment/music.rb, line 6 def initialize(title, category, data_list) @title, @category, @data_list = title, category, data_list end
Public Instance Methods
==(other)
click to toggle source
# File lib/syobocal/comment/music.rb, line 10 def ==(other) other.instance_of?(self.class) && other.title == title && other.category == category && other.data_list == data_list end