Class: VagrantPlugins::Google::Util::Timer

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-google/util/timer.rb

Class Method Summary collapse

Class Method Details

.timeObject

A basic utility method that times the execution of the given block and returns it.



20
21
22
23
24
25
26
# File 'lib/vagrant-google/util/timer.rb', line 20

def self.time
  start_time = Time.now.to_f
  yield
  end_time = Time.now.to_f

  end_time - start_time
end