Sha256: 3efb16f4774c49db5c42c89ca9702175d060cc627389f1ad4cd49252acd8802e

Contents?: true

Size: 774 Bytes

Versions: 52

Compression:

Stored size: 774 Bytes

Contents

# frozen_string_literal: true

class Hash
  # Returns a hash that includes everything except given keys.
  #   hash = { a: true, b: false, c: nil }
  #   hash.except(:c)     # => { a: true, b: false }
  #   hash.except(:a, :b) # => { c: nil }
  #   hash                # => { a: true, b: false, c: nil }
  #
  # This is useful for limiting a set of parameters to everything but a few known toggles:
  #   @person.update(params[:person].except(:admin))
  def except(*keys)
    dup.except!(*keys)
  end

  # Removes the given keys from hash and returns it.
  #   hash = { a: true, b: false, c: nil }
  #   hash.except!(:c) # => { a: true, b: false }
  #   hash             # => { a: true, b: false }
  def except!(*keys)
    keys.each { |key| delete(key) }
    self
  end
end

Version data entries

52 entries across 52 versions & 8 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.8 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.7.1 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.7 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.6.3 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.6.2 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.6.1 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.6 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.4.6 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.5 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.4.5 lib/active_support/core_ext/hash/except.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/hash/except.rb
activesupport-5.2.4.4 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.4.3 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.4.2 lib/active_support/core_ext/hash/except.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/core_ext/hash/except.rb
activesupport-5.2.4.1 lib/active_support/core_ext/hash/except.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/core_ext/hash/except.rb
activesupport-5.2.4 lib/active_support/core_ext/hash/except.rb
activesupport-5.2.4.rc1 lib/active_support/core_ext/hash/except.rb