aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/predicate_builder/basic_object_handler.rb
blob: 79cde00303a1b462a895faf718af90066f984c42 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActiveRecord
  class PredicateBuilder
    class BasicObjectHandler # :nodoc:
      def call(attribute, value)
        attribute.eq(value)
      end
    end
  end
end