Class: ActiveSupport::Duration
- Inherits:
- BasicObject
- Defined in:
- lib/active_support/duration.rb
Overview
Provides accurate date and time measurements using Date#advance and Time#advance, respectively. It mainly supports the methods on Numeric, such as in this example:
1.month.ago # equivalent to Time.now.advance(:months => -1)
Instance Attribute Summary collapse
-
#parts ⇒ Object
Returns the value of attribute parts.
-
#value ⇒ Object
Returns the value of attribute value.
Class Method Summary collapse
-
.===(other) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#+(other) ⇒ Object
Adds another Duration or a Numeric to this Duration.
-
#-(other) ⇒ Object
Subtracts another Duration or a Numeric from this Duration.
-
#-@ ⇒ Object
:nodoc:.
-
#==(other) ⇒ Object
Returns true if
other
is also a Duration instance with the samevalue
, or ifother == value
. -
#ago(time = ::Time.current) ⇒ Object
(also: #until)
Calculates a new Time or Date that is as far in the past as this Duration represents.
-
#initialize(value, parts) ⇒ Duration
constructor
:nodoc:.
-
#inspect ⇒ Object
:nodoc:.
-
#is_a?(klass) ⇒ Boolean
:nodoc:.
-
#since(time = ::Time.current) ⇒ Object
(also: #from_now)
Calculates a new Time or Date that is as far in the future as this Duration represents.
Methods inherited from BasicObject
Constructor Details
#initialize(value, parts) ⇒ Duration
:nodoc:
12 13 14 |
# File 'lib/active_support/duration.rb', line 12 def initialize(value, parts) #:nodoc: @value, @parts = value, parts end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object (private)
:nodoc:
96 97 98 |
# File 'lib/active_support/duration.rb', line 96 def method_missing(method, *args, &block) #:nodoc: value.send(method, *args) end |
Instance Attribute Details
#parts ⇒ Object
Returns the value of attribute parts.
10 11 12 |
# File 'lib/active_support/duration.rb', line 10 def parts @parts end |
#value ⇒ Object
Returns the value of attribute value.
10 11 12 |
# File 'lib/active_support/duration.rb', line 10 def value @value end |
Class Method Details
Instance Method Details
#+(other) ⇒ Object
Adds another Duration or a Numeric to this Duration. Numeric values are treated as seconds.
18 19 20 21 22 23 24 |
# File 'lib/active_support/duration.rb', line 18 def +(other) if Duration === other Duration.new(value + other.value, @parts + other.parts) else Duration.new(value + other, @parts + [[:seconds, other]]) end end |
#-(other) ⇒ Object
Subtracts another Duration or a Numeric from this Duration. Numeric values are treated as seconds.
28 29 30 |
# File 'lib/active_support/duration.rb', line 28 def -(other) self + (-other) end |
#-@ ⇒ Object
:nodoc:
32 33 34 |
# File 'lib/active_support/duration.rb', line 32 def -@ #:nodoc: Duration.new(-value, parts.map { |type,number| [type, -number] }) end |
#==(other) ⇒ Object
Returns true if other
is also a Duration instance with the same value
, or if other == value
.
42 43 44 45 46 47 48 |
# File 'lib/active_support/duration.rb', line 42 def ==(other) if Duration === other other.value == value else other == value end end |
#ago(time = ::Time.current) ⇒ Object Also known as: until
Calculates a new Time or Date that is as far in the past as this Duration represents.
63 64 65 |
# File 'lib/active_support/duration.rb', line 63 def ago(time = ::Time.current) sum(-1, time) end |
#inspect ⇒ Object
:nodoc:
68 69 70 71 72 73 74 75 76 |
# File 'lib/active_support/duration.rb', line 68 def inspect #:nodoc: consolidated = parts.inject(::Hash.new(0)) { |h,part| h[part.first] += part.last; h } parts = [:years, :months, :days, :minutes, :seconds].map do |length| n = consolidated[length] "#{n} #{n == 1 ? length.to_s.singularize : length.to_s}" if n.nonzero? end.compact parts = ["0 seconds"] if parts.empty? parts.to_sentence(:locale => :en) end |
#is_a?(klass) ⇒ Boolean
:nodoc:
36 37 38 |
# File 'lib/active_support/duration.rb', line 36 def is_a?(klass) #:nodoc: klass == Duration || super end |