halogenandtoast/timelord

View on GitHub
lib/timelord/no_matcher.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Timelord
  class NoMatcher
    def initialize(string, options)
    end

    def matches?
      true
    end

    def to_date
      nil
    end
  end
end