Sha256: fb6454679c36067470d488453242c237f55585c4876d6b5bed28f896ee845ba1

Contents?: true

Size: 871 Bytes

Versions: 106

Compression:

Stored size: 871 Bytes

Contents

# frozen_string_literal: true

module ActiveModel
  module Type
    class Binary < Value # :nodoc:
      def type
        :binary
      end

      def binary?
        true
      end

      def cast(value)
        if value.is_a?(Data)
          value.to_s
        else
          super
        end
      end

      def serialize(value)
        return if value.nil?
        Data.new(super)
      end

      def changed_in_place?(raw_old_value, value)
        old_value = deserialize(raw_old_value)
        old_value != value
      end

      class Data # :nodoc:
        def initialize(value)
          @value = value.to_s
        end

        def to_s
          @value
        end
        alias_method :to_str, :to_s

        def hex
          @value.unpack1("H*")
        end

        def ==(other)
          other == to_s || super
        end
      end
    end
  end
end

Version data entries

106 entries across 102 versions & 10 rubygems

Version Path
activemodel-7.0.2.2 lib/active_model/type/binary.rb
activemodel-6.1.4.6 lib/active_model/type/binary.rb
activemodel-6.0.4.6 lib/active_model/type/binary.rb
activemodel-6.0.4.5 lib/active_model/type/binary.rb
activemodel-6.1.4.5 lib/active_model/type/binary.rb
activemodel-7.0.2.1 lib/active_model/type/binary.rb
activemodel-7.0.2 lib/active_model/type/binary.rb
ric-0.14.2 vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/binary.rb
ric-0.14.1 vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/binary.rb
activemodel-7.0.1 lib/active_model/type/binary.rb
ric-0.14.0 vendor/bundle/ruby/2.7.0/gems/activemodel-6.1.4.4/lib/active_model/type/binary.rb
activemodel-7.0.0 lib/active_model/type/binary.rb
activemodel-6.1.4.4 lib/active_model/type/binary.rb
activemodel-6.0.4.4 lib/active_model/type/binary.rb
activemodel-7.0.0.rc3 lib/active_model/type/binary.rb
activemodel-6.1.4.3 lib/active_model/type/binary.rb
activemodel-6.0.4.3 lib/active_model/type/binary.rb
activemodel-6.0.4.2 lib/active_model/type/binary.rb
activemodel-6.1.4.2 lib/active_model/type/binary.rb
activemodel-7.0.0.rc2 lib/active_model/type/binary.rb