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
170 171 172 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 170 def beginning_of(time) raise 'Not supported' end |
#end_of(time) ⇒ Object
174 175 176 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 174 def end_of(time) raise 'Not supported' end |
#time_after(time, number) ⇒ Object
166 167 168 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 166 def time_after(time, number) time + Interval.seconds(number) end |
#time_ago(time, number) ⇒ Object
162 163 164 |
# File 'lib/timing/natural_time_language_interpreters.rb', line 162 def time_ago(time, number) time - Interval.seconds(number) end |