Module: EasyAppHelper::Processes::TimeManagement

Included in:
Base
Defined in:
lib/easy_app_helper/processes/time_management.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#creation_timeObject

Returns the value of attribute creation_time.



8
9
10
# File 'lib/easy_app_helper/processes/time_management.rb', line 8

def creation_time
  @creation_time
end

#end_timeObject

Returns the value of attribute end_time.



8
9
10
# File 'lib/easy_app_helper/processes/time_management.rb', line 8

def end_time
  @end_time
end

#start_timeObject

Returns the value of attribute start_time.



8
9
10
# File 'lib/easy_app_helper/processes/time_management.rb', line 8

def start_time
  @start_time
end

Instance Method Details

#durationObject



10
11
12
# File 'lib/easy_app_helper/processes/time_management.rb', line 10

def duration
  end_time - start_time
end