Sha256: ece09434595aaa194dc6f7ee151c3d0ec2a7c5e0aaaf246deb386f02b27a34a8

Contents?: true

Size: 410 Bytes

Versions: 325

Compression:

Stored size: 410 Bytes

Contents

class Hash
  # 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)
    dup.delete_if { |k, v| h2[k] == v }.merge!(h2.dup.delete_if { |k, v| has_key?(k) })
  end
end

Version data entries

325 entries across 281 versions & 29 rubygems

Version Path
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/activesupport-3.2.7/lib/active_support/core_ext/hash/diff.rb
challah-rolls-0.2.0 vendor/bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/hash/diff.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/hash/diff.rb
challah-rolls-0.2.0 vendor/bundle/gems/activesupport-3.2.9/lib/active_support/core_ext/hash/diff.rb
challah-rolls-0.2.0 vendor/bundle/gems/activesupport-3.2.7/lib/active_support/core_ext/hash/diff.rb
challah-0.8.3 vendor/bundle/gems/activesupport-3.2.9/lib/active_support/core_ext/hash/diff.rb
challah-0.8.3 vendor/bundle/gems/activesupport-3.2.8/lib/active_support/core_ext/hash/diff.rb
dirty_history-0.7.0 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/diff.rb
classiccms-0.6.8 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/diff.rb
activesupport-3.2.9 lib/active_support/core_ext/hash/diff.rb
activesupport-3.2.9.rc3 lib/active_support/core_ext/hash/diff.rb
classiccms-0.6.7 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/diff.rb
activesupport-3.2.9.rc2 lib/active_support/core_ext/hash/diff.rb
fragrant-0.0.5 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.8/lib/active_support/core_ext/hash/diff.rb
activesupport-3.2.9.rc1 lib/active_support/core_ext/hash/diff.rb
classiccms-0.6.6 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/diff.rb
classiccms-0.6.5 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/diff.rb
classiccms-0.6.4 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/hash/diff.rb
dirty_history-0.6.7 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/diff.rb
dirty_history-0.6.6 dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/diff.rb