Object
# File lib/runt/schedule.rb, line 75 def initialize(id) raise Exception, "id argument cannot be nil" unless !id.nil? @id=id end
# File lib/runt/schedule.rb, line 82 def == (other) return true if other.kind_of?(Event) && @id==other.id end
# File lib/runt/schedule.rb, line 80 def to_s; @id.to_s end
[Validate]
Generated with the Darkfish Rdoc Generator 2.