Module: ByStar::Directional
- Included in:
- Base
- Defined in:
- lib/by_star/directional.rb
Instance Method Summary collapse
- #after(*args) ⇒ Object (also: #after_now)
- #before(*args) ⇒ Object (also: #before_now)
Instance Method Details
#after(*args) ⇒ Object Also known as: after_now
13 14 15 16 17 18 |
# File 'lib/by_star/directional.rb', line 13 def after(*args) (*args) do |time, | time = ByStar::Normalization.time(time) after_query(time, ) end end |
#before(*args) ⇒ Object Also known as: before_now
5 6 7 8 9 10 |
# File 'lib/by_star/directional.rb', line 5 def before(*args) (*args) do |time, | time = ByStar::Normalization.time(time) before_query(time, ) end end |