Sha256: b5cea8133c2bdca12365407c1f50fc0b89880631951f30dbbb96633ef45eccec

Contents?: true

Size: 977 Bytes

Versions: 37

Compression:

Stored size: 977 Bytes

Contents

# frozen_string_literal: true

module Arel # :nodoc: all
  module Attributes
    class Attribute < Struct.new :relation, :name
      include Arel::Expressions
      include Arel::Predications
      include Arel::AliasPredication
      include Arel::OrderPredications
      include Arel::Math

      def type_caster
        relation.type_for_attribute(name)
      end

      ###
      # Create a node for lowering this attribute
      def lower
        relation.lower self
      end

      def type_cast_for_database(value)
        relation.type_cast_for_database(name, value)
      end

      def able_to_type_cast?
        relation.able_to_type_cast?
      end
    end

    class String    < Attribute; end
    class Time      < Attribute; end
    class Boolean   < Attribute; end
    class Decimal   < Attribute; end
    class Float     < Attribute; end
    class Integer   < Attribute; end
    class Undefined < Attribute; end
  end

  Attribute = Attributes::Attribute
end

Version data entries

37 entries across 37 versions & 4 rubygems

Version Path
activerecord-6.1.4.4 lib/arel/attributes/attribute.rb
activerecord-6.1.4.3 lib/arel/attributes/attribute.rb
activerecord-6.1.4.2 lib/arel/attributes/attribute.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/activerecord-6.1.4.1/lib/arel/attributes/attribute.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/activerecord-6.1.4.1/lib/arel/attributes/attribute.rb
activerecord-6.1.4.1 lib/arel/attributes/attribute.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/activerecord-6.1.4/lib/arel/attributes/attribute.rb
activerecord-6.1.4 lib/arel/attributes/attribute.rb
activerecord-6.1.3.2 lib/arel/attributes/attribute.rb
activerecord-6.1.3.1 lib/arel/attributes/attribute.rb
activerecord-6.1.3 lib/arel/attributes/attribute.rb
activerecord-6.1.2.1 lib/arel/attributes/attribute.rb
activerecord-6.1.2 lib/arel/attributes/attribute.rb
activerecord-6.1.1 lib/arel/attributes/attribute.rb
activerecord-6.1.0 lib/arel/attributes/attribute.rb
activerecord-6.1.0.rc2 lib/arel/attributes/attribute.rb
activerecord-6.1.0.rc1 lib/arel/attributes/attribute.rb