Sha256: 8ec49cdc55309a15c1895026b7b5ca21e885d98904de06444069bdacd7b475d8

Contents?: true

Size: 1.6 KB

Versions: 101

Compression:

Stored size: 1.6 KB

Contents

require 'active_support/core_ext/range'

module ActiveModel
  module Validations
    module Clusivity #:nodoc:
      ERROR_MESSAGE = "An object with the method #include? or a proc, lambda or symbol is required, " \
                      "and must be supplied as the :in (or :within) option of the configuration hash"

      def check_validity!
        unless delimiter.respond_to?(:include?) || delimiter.respond_to?(:call) || delimiter.respond_to?(:to_sym)
          raise ArgumentError, ERROR_MESSAGE
        end
      end

    private

      def include?(record, value)
        members = if delimiter.respond_to?(:call)
                    delimiter.call(record)
                  elsif delimiter.respond_to?(:to_sym)
                    record.send(delimiter)
                  else
                    delimiter
                  end

        members.send(inclusion_method(members), value)
      end

      def delimiter
        @delimiter ||= options[:in] || options[:within]
      end

      # In Ruby 1.9 <tt>Range#include?</tt> on non-number-or-time-ish ranges checks all
      # possible values in the range for equality, which is slower but more accurate.
      # <tt>Range#cover?</tt> uses the previous logic of comparing a value with the range
      # endpoints, which is fast but is only accurate on Numeric, Time, or DateTime ranges.
      def inclusion_method(enumerable)
        if enumerable.is_a? Range
          case enumerable.first
          when Numeric, Time, DateTime
            :cover?
          else
            :include?
          end
        else
          :include?
        end
      end
    end
  end
end

Version data entries

101 entries across 96 versions & 9 rubygems

Version Path
activemodel-4.2.11.3 lib/active_model/validations/clusivity.rb
activemodel-4.2.11.2 lib/active_model/validations/clusivity.rb
activemodel-4.2.11.1 lib/active_model/validations/clusivity.rb
activemodel-4.2.11 lib/active_model/validations/clusivity.rb
activemodel-4.2.10 lib/active_model/validations/clusivity.rb
activemodel-4.2.10.rc1 lib/active_model/validations/clusivity.rb
activemodel-4.2.9 lib/active_model/validations/clusivity.rb
activemodel-4.2.9.rc2 lib/active_model/validations/clusivity.rb
activemodel-4.2.9.rc1 lib/active_model/validations/clusivity.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activemodel-4.2.8/lib/active_model/validations/clusivity.rb
activemodel-4.2.8 lib/active_model/validations/clusivity.rb
activemodel-4.2.8.rc1 lib/active_model/validations/clusivity.rb
activemodel-4.2.7.1 lib/active_model/validations/clusivity.rb
activemodel-4.2.7 lib/active_model/validations/clusivity.rb
activemodel-4.1.16 lib/active_model/validations/clusivity.rb
activemodel-4.1.16.rc1 lib/active_model/validations/clusivity.rb
activemodel-4.2.7.rc1 lib/active_model/validations/clusivity.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activemodel-4.2.6/lib/active_model/validations/clusivity.rb
activemodel-4.1.15 lib/active_model/validations/clusivity.rb
activemodel-4.2.6 lib/active_model/validations/clusivity.rb