Method: Cuboid::Application#statistics
- Defined in:
- lib/cuboid/application.rb
#statistics ⇒ Hash
Returns Framework statistics:
-
:runtime– Scan runtime in seconds.
286 287 288 289 290 |
# File 'lib/cuboid/application.rb', line 286 def statistics { runtime: @start_datetime ? (@finish_datetime || Time.now) - @start_datetime : 0, } end |