Sha256: 04391ddd2e99f847ee049408a5998c84aca4d06937a53b7e7834df71c7b0a306

Contents?: true

Size: 604 Bytes

Versions: 215

Compression:

Stored size: 604 Bytes

Contents

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Hash #:nodoc:
      module Diff
        # Returns a hash that represents the difference between two hashes.
        #
        # Examples:
        #
        #   {1 => 2}.diff(1 => 2)         # => {}
        #   {1 => 2}.diff(1 => 3)         # => {1 => 2}
        #   {}.diff(1 => 2)               # => {1 => 2}
        #   {1 => 2, 3 => 4}.diff(1 => 2) # => {3 => 4}
        def diff(h2)
          self.dup.delete_if { |k, v| h2[k] == v }.merge(h2.dup.delete_if { |k, v| self.has_key?(k) })
        end
      end
    end
  end
end

Version data entries

215 entries across 182 versions & 27 rubygems

Version Path
esod-client-0.2.0 lib/activesupport-2.2.2/lib/active_support/core_ext/hash/diff.rb
esod-client-0.1.1 lib/activesupport-2.2.2/lib/active_support/core_ext/hash/diff.rb
esod-client-0.1.0 lib/activesupport-2.2.2/lib/active_support/core_ext/hash/diff.rb
factorylabs-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/hash/diff.rb
ginst-2009.12.8 vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
activesupport-2.3.5 lib/active_support/core_ext/hash/diff.rb
ginst-2009.11.24 vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
ginst-2009.11.23 vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
ginst-2.0.1 vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
ginst-2.0.0 vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
gemstreamer-1.2.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
gemstreamer-1.1.1 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
gemstreamer-1.1.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
gemstreamer-1.0.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
gemstreamer-0.0.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
radiant-rc-0.9.0 vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
activesupport-2.2.3 lib/active_support/core_ext/hash/diff.rb
webroar-0.2.2 src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
radiant-0.8.1 vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
activesupport-2.3.4 lib/active_support/core_ext/hash/diff.rb