Object
TODO: Extend event to take other attributes
# File lib/runt/schedule.rb, line 93 def initialize(id) raise Exception, "id argument cannot be nil" unless !id.nil? @id=id end
# File lib/runt/schedule.rb, line 100 def == (other) return true if other.kind_of?(Event) && @id==other.id end
# File lib/runt/schedule.rb, line 98 def to_s; @id.to_s end
[Validate]
Generated with the Darkfish Rdoc Generator 2.