Sha256: 83195cd4acc420fe7997cc8b8b2f363a247e553e0d3e59b87dbaac416732a9df

Contents?: true

Size: 368 Bytes

Versions: 1

Compression:

Stored size: 368 Bytes

Contents

require 'search_lingo/parsers/open_date_range_parser'

module SearchLingo
  module Parsers # :nodoc:
    class LTEDateParser < OpenDateRangeParser # :nodoc:
      def initialize(*)
        warn "DEPRECATION WARNING: use SearchLingo::Parsers::OpenDateRangeParser " \
          "instead of #{self.class} (from #{caller.first})"
        super
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
search_lingo-1.0.2 lib/search_lingo/parsers/lte_date_parser.rb