Module: Barnes::Instruments::Timepiece

Defined in:
lib/barnes/instruments/stopwatch.rb

Class Method Summary collapse

Class Method Details

.cpuObject

ruby-prof installed



82
83
84
# File 'lib/barnes/instruments/stopwatch.rb', line 82

def self.cpu
  Process.clock_gettime Process::CLOCK_PROCESS_CPUTIME_ID, :float_millisecond
end

.wallObject



70
71
72
# File 'lib/barnes/instruments/stopwatch.rb', line 70

def self.wall
  ::Time.now.to_f * 1000
end