Class: VagrantPlugins::ProviderLibvirt::Util::Timer
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderLibvirt::Util::Timer
- Defined in:
- lib/vagrant-libvirt/util/timer.rb
Class Method Summary collapse
-
.time ⇒ Object
A basic utility method that times the execution of the given block and returns it.
Class Method Details
.time ⇒ Object
A basic utility method that times the execution of the given block and returns it.
9 10 11 12 13 14 15 |
# File 'lib/vagrant-libvirt/util/timer.rb', line 9 def self.time start_time = Time.now.to_f yield end_time = Time.now.to_f end_time - start_time end |