# File lib/util/condition.rb, line 26 def initialize(name, description = nil, info = nil) @name = name @description = description @info = info end
@private
# File lib/util/condition.rb, line 38 def ==(other) ((other.class = self.class) && (other.name == self.name) && (other.description == self.description) && (other.info == self.info)) end
@private
# File lib/util/condition.rb, line 33 def to_s "Condition(#{@name}, #{@description}, #{@info})" end