Sha256: c9dd01edea4efe49afb34170072c8a3870579ccdcf1b164a81f5f340e46b0246

Contents?: true

Size: 551 Bytes

Versions: 187

Compression:

Stored size: 551 Bytes

Contents

# frozen_string_literal: true

module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Xml < Type::String # :nodoc:
          def type
            :xml
          end

          def serialize(value)
            return unless value
            Data.new(super)
          end

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

            def to_s
              @value
            end
          end
        end
      end
    end
  end
end

Version data entries

187 entries across 182 versions & 15 rubygems

Version Path
omg-activerecord-8.0.0.alpha1 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.1.4 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.2.1 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.2.0 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.2.0.rc1 lib/active_record/connection_adapters/postgresql/oid/xml.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.0.8.4/lib/active_record/connection_adapters/postgresql/oid/xml.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.2.0.beta3 lib/active_record/connection_adapters/postgresql/oid/xml.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/connection_adapters/postgresql/oid/xml.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/connection_adapters/postgresql/oid/xml.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/connection_adapters/postgresql/oid/xml.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activerecord-7.1.3.4/lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.2.0.beta2 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.1.3.4 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.0.8.4 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-6.1.7.8 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.2.0.beta1 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.1.3.2 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.1.3.1 lib/active_record/connection_adapters/postgresql/oid/xml.rb
activerecord-7.0.8.1 lib/active_record/connection_adapters/postgresql/oid/xml.rb