class Syobocal::Comment::Cast

Attributes

character[R]
people[R]

Public Class Methods

new(character, people) click to toggle source
# File lib/syobocal/comment/cast.rb, line 6
def initialize(character, people)
  @character, @people = character, people
end

Public Instance Methods

==(other) click to toggle source
# File lib/syobocal/comment/cast.rb, line 10
def ==(other)
  other.instance_of?(self.class) && other.character == character && other.people == people
end