Class: ActiveSupport::Testing::Performance::Metrics::CpuTime

Inherits:
Time
  • Object
show all
Defined in:
activesupport/lib/active_support/testing/performance/ruby.rb,
activesupport/lib/active_support/testing/performance/jruby.rb

Constant Summary collapse

Mode =
RubyProf::CPU_TIME

Constants included from ActionView::Helpers::NumberHelper

ActionView::Helpers::NumberHelper::DECIMAL_UNITS, ActionView::Helpers::NumberHelper::DEFAULT_CURRENCY_VALUES, ActionView::Helpers::NumberHelper::STORAGE_UNITS

Instance Attribute Summary

Attributes inherited from Base

#loopback, #total

Instance Method Summary collapse

Methods inherited from Time

#format

Methods inherited from Base

#benchmark, #measure_mode, #name, #profile

Methods included from ActionView::Helpers::NumberHelper

#number_to_currency, #number_to_human, #number_to_human_size, #number_to_percentage, #number_to_phone, #number_with_delimiter, #number_with_precision

Constructor Details

#initialize(*args) ⇒ CpuTime

Returns a new instance of CpuTime.



114
115
116
117
118
# File 'activesupport/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

#measureObject



120
121
122
# File 'activesupport/lib/active_support/testing/performance/ruby.rb', line 120

def measure
  RubyProf.measure_cpu_time
end