halogenandtoast/timelord

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

Summary

Maintainability
A
0 mins
Test Coverage
module Timelord
  class NextThursdayMatcher < Matcher
    REGEX = /\bnext (thur|thurs)\b/

      def to_date
        NextWeekday.new(DAY_NAMES.index("thursday"), today).to_date
      end
  end
end