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
178 179 180 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 178 def beginning_of(time) raise 'Not supported' end |
#end_of(time) ⇒ Object
182 183 184 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 182 def end_of(time) raise 'Not supported' end |
#time_after(time, number) ⇒ Object
174 175 176 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 174 def time_after(time, number) time + Interval.seconds(number) end |
#time_ago(time, number) ⇒ Object
170 171 172 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 170 def time_ago(time, number) time - Interval.seconds(number) end |