halogenandtoast/timelord

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

Summary

Maintainability
A
0 mins
Test Coverage
module Timelord
  class TodayMatcher < Matcher
    REGEX = /\b(today|tod)\b/i

    def to_date
      today
    end
  end
end