Class Clock
In: lib/clock.rb
Parent: Object

Methods

at   now   time=  

Public Class methods

[Source]

   # File lib/clock.rb, line 2
2:   def self.at( *params )
3:     #TODO fix this
4:     eval("Time.at #{params.join(',')}")
5:   end

[Source]

   # File lib/clock.rb, line 7
7:   def self.now
8:     Time.now
9:   end

[Source]

    # File lib/clock.rb, line 11
11:   def self.time=
12:     raise "Cannot set real Clock class"
13:   end

[Validate]