Class: ActiveSupport::Testing::Performance::Metrics::CpuTime
- Defined in:
- lib/active_support/testing/performance/ruby.rb,
lib/active_support/testing/performance/jruby.rb
Constant Summary collapse
- Mode =
RubyProf::CPU_TIME
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(*args) ⇒ CpuTime
constructor
A new instance of CpuTime.
- #measure ⇒ Object
Methods inherited from Time
Methods inherited from Base
#benchmark, #measure_mode, #name, #profile
Constructor Details
#initialize(*args) ⇒ CpuTime
Returns a new instance of CpuTime.
114 115 116 117 118 |
# File 'lib/active_support/testing/performance/ruby.rb', line 114 def initialize(*args) # FIXME: yeah my CPU is 2.33 GHz RubyProf.cpu_frequency = 2.33e9 unless RubyProf.cpu_frequency > 0 super end |
Instance Method Details
#measure ⇒ Object
120 121 122 |
# File 'lib/active_support/testing/performance/ruby.rb', line 120 def measure RubyProf.measure_cpu_time end |