Sha256: aa66b37d86a3545efc8ffa8d36dd6a91caeb1156b04ccfea366817969cfe2aff

Contents?: true

Size: 445 Bytes

Versions: 59

Compression:

Stored size: 445 Bytes

Contents

# frozen_string_literal: true

require 'active_support'

class LHS::Record

  module Merge
    extend ActiveSupport::Concern

    def merge(other)
      _record.new(_data.to_h.merge(other.to_h))
    end

    def merge!(other)
      _data._raw.merge!(other.to_h)
    end

    def deep_merge(other)
      _record.new(_data.to_h.deep_merge(other.to_h))
    end

    def deep_merge!(other)
      _data._raw.deep_merge!(other.to_h)
    end
  end
end

Version data entries

59 entries across 59 versions & 1 rubygems

Version Path
lhs-22.1.1.pre lib/lhs/concerns/record/merge.rb
lhs-22.1.0 lib/lhs/concerns/record/merge.rb
lhs-22.0.0 lib/lhs/concerns/record/merge.rb
lhs-21.3.1 lib/lhs/concerns/record/merge.rb
lhs-21.3.0 lib/lhs/concerns/record/merge.rb
lhs-21.3.0.pre.autoauth.1 lib/lhs/concerns/record/merge.rb
lhs-21.2.4 lib/lhs/concerns/record/merge.rb
lhs-21.2.3 lib/lhs/concerns/record/merge.rb
lhs-21.2.3.pre.preload.pre.providers.pre.too.1 lib/lhs/concerns/record/merge.rb
lhs-21.2.2 lib/lhs/concerns/record/merge.rb
lhs-21.2.1 lib/lhs/concerns/record/merge.rb
lhs-21.2.0 lib/lhs/concerns/record/merge.rb
lhs-21.1.4 lib/lhs/concerns/record/merge.rb
lhs-21.1.3 lib/lhs/concerns/record/merge.rb
lhs-21.1.2 lib/lhs/concerns/record/merge.rb
lhs-21.1.2.pre.keyfix.2 lib/lhs/concerns/record/merge.rb
lhs-21.1.2.pre.keyfix.1 lib/lhs/concerns/record/merge.rb
lhs-21.1.2.pre.fix.pre.cant.pre.add.pre.new.pre.key.pre.during.pre.iteration.1 lib/lhs/concerns/record/merge.rb
lhs-21.1.1.pre.pre.fix.pre.cant.pre.add.pre.new.pre.key.pre.during.pre.iteration.1 lib/lhs/concerns/record/merge.rb
lhs-21.1.0 lib/lhs/concerns/record/merge.rb