Method: Invoicing::TimeDependent#value_now

Defined in:
lib/invoicing/time_dependent.rb

#value_nowObject

Returns value_at for the current date/time. If value was renamed to another_method_name (option to acts_as_time_dependent), then another_method_name_now is defined as an alias for value_now.



342
343
344
# File 'lib/invoicing/time_dependent.rb', line 342

def value_now
  value_at Time.now
end