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
active_mailer-0.0.5 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/core_ext/hash/diff.rb
active_mailer-0.0.4 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/core_ext/hash/diff.rb
active_mailer-0.0.3 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/core_ext/hash/diff.rb
activesupport-3.2.12 lib/active_support/core_ext/hash/diff.rb
activesupport-3.1.11 lib/active_support/core_ext/hash/diff.rb
graphael-on-rails-0.5.1 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
graphael-on-rails-0.0.1 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
challah-0.9.1.beta.3 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
devise_sociable-0.1.0 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
activesupport-3.0.20 lib/active_support/core_ext/hash/diff.rb
backbone-queryparams-rails-0.0.1 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
railscast-assets-0.0.2 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
railscast-assets-0.0.2 vendor/bundle/gems/backbone-forms-on-rails-0.10.0/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
backbone-forms-on-rails-0.10.0 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
backbone-forms-on-rails-0.10.0 vendor/bundle/gems/backbone-forms-on-rails-0.10.0/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
backbone-deep-rails-0.0.2 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
backbone-deep-rails-0.0.1 vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
challah-0.9.1.beta vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/diff.rb
activesupport-3.2.11 lib/active_support/core_ext/hash/diff.rb
activesupport-3.1.10 lib/active_support/core_ext/hash/diff.rb