Sha256: c1718c2ba39f78d6eaaca62dbdc5b967187dffe9608b57d9a33036852d451592

Contents?: true

Size: 812 Bytes

Versions: 135

Compression:

Stored size: 812 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)
    slice(*self.keys - keys)
  end unless method_defined?(:except)

  # 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

135 entries across 129 versions & 17 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/hash/except.rb
activesupport-7.2.2.1 lib/active_support/core_ext/hash/except.rb
activesupport-7.1.5.1 lib/active_support/core_ext/hash/except.rb
activesupport-7.0.8.7 lib/active_support/core_ext/hash/except.rb
activesupport-7.2.2 lib/active_support/core_ext/hash/except.rb
activesupport-7.1.5 lib/active_support/core_ext/hash/except.rb
activesupport-7.2.1.2 lib/active_support/core_ext/hash/except.rb
activesupport-7.1.4.2 lib/active_support/core_ext/hash/except.rb
activesupport-7.0.8.6 lib/active_support/core_ext/hash/except.rb
activesupport-6.1.7.10 lib/active_support/core_ext/hash/except.rb
activesupport-6.1.7.9 lib/active_support/core_ext/hash/except.rb
activesupport-7.2.1.1 lib/active_support/core_ext/hash/except.rb
activesupport-7.1.4.1 lib/active_support/core_ext/hash/except.rb
activesupport-7.0.8.5 lib/active_support/core_ext/hash/except.rb
activesupport-7.1.4 lib/active_support/core_ext/hash/except.rb
activesupport-7.2.1 lib/active_support/core_ext/hash/except.rb
activesupport-7.2.0 lib/active_support/core_ext/hash/except.rb
activesupport-7.2.0.rc1 lib/active_support/core_ext/hash/except.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.8.4/lib/active_support/core_ext/hash/except.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/core_ext/hash/except.rb