class Timing::NaturalTimeLanguage::BeforeFrom

Public Instance Methods

before?() click to toggle source
# File lib/timing/natural_time_language_interpreters.rb, line 163
def before?
  text_value.downcase == 'before'
end
from?() click to toggle source
# File lib/timing/natural_time_language_interpreters.rb, line 167
def from?
  text_value.downcase == 'from'
end