halogenandtoast/timelord

View on GitHub
lib/timelord/matchers/tomorrow_matcher.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Timelord
  class TomorrowMatcher < Matcher
    REGEX = /\b(tomorrow|tom)\b/i

    def to_date
      today + 1
    end
  end
end