Class: Timing::NaturalTimeLanguage::SecondInterval
- Inherits:
-
Treetop::Runtime::SyntaxNode
- Object
- Treetop::Runtime::SyntaxNode
- Timing::NaturalTimeLanguage::SecondInterval
- Defined in:
- lib/timing/natural_time_language_interpreters.rb
Instance Method Summary collapse
- #beginning_of(time) ⇒ Object
- #end_of(time) ⇒ Object
- #time_after(time, number) ⇒ Object
- #time_ago(time, number) ⇒ Object
Instance Method Details
#beginning_of(time) ⇒ Object
172 173 174 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 172 def beginning_of(time) raise 'Not supported' end |
#end_of(time) ⇒ Object
176 177 178 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 176 def end_of(time) raise 'Not supported' end |
#time_after(time, number) ⇒ Object
168 169 170 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 168 def time_after(time, number) time + Interval.seconds(number) end |
#time_ago(time, number) ⇒ Object
164 165 166 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 164 def time_ago(time, number) time - Interval.seconds(number) end |