Class: Hash
- Defined in:
- lib/bitmask_attribute/core_ext/blank.rb,
lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb
Overview
Extracted from Active Support
Direct Known Subclasses
Instance Method Summary collapse
-
#assert_valid_keys(*valid_keys) ⇒ Object
Validate all keys in a hash match *valid keys, raising ArgumentError on a mismatch.
-
#stringify_keys ⇒ Object
Return a new hash with all keys converted to strings.
-
#stringify_keys! ⇒ Object
Destructively convert all keys to strings.
-
#symbolize_keys ⇒ Object
(also: #to_options)
Return a new hash with all keys converted to symbols, as long as they respond to
to_sym
. -
#symbolize_keys! ⇒ Object
(also: #to_options!)
Destructively convert all keys to symbols, as long as they respond to
to_sym
.
Instance Method Details
#assert_valid_keys(*valid_keys) ⇒ Object
Validate all keys in a hash match *valid keys, raising ArgumentError on a mismatch. Note that keys are NOT treated indifferently, meaning if you use strings for keys but assert symbols as keys, this will fail.
Examples
{ :name => "Rob", :years => "28" }.assert_valid_keys(:name, :age) # => raises "ArgumentError: Unknown key(s): years"
{ :name => "Rob", :age => "28" }.assert_valid_keys("name", "age") # => raises "ArgumentError: Unknown key(s): name, age"
{ :name => "Rob", :age => "28" }.assert_valid_keys(:name, :age) # => passes, raises nothing
42 43 44 45 |
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 42 def assert_valid_keys(*valid_keys) unknown_keys = keys - [valid_keys].flatten raise(ArgumentError, "Unknown key(s): #{unknown_keys.join(", ")}") unless unknown_keys.empty? end |
#stringify_keys ⇒ Object
Return a new hash with all keys converted to strings.
4 5 6 |
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 4 def stringify_keys dup.stringify_keys! end |
#stringify_keys! ⇒ Object
Destructively convert all keys to strings.
9 10 11 12 13 14 |
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 9 def stringify_keys! keys.each do |key| self[key.to_s] = delete(key) end self end |
#symbolize_keys ⇒ Object Also known as: to_options
Return a new hash with all keys converted to symbols, as long as they respond to to_sym
.
18 19 20 |
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 18 def symbolize_keys dup.symbolize_keys! end |
#symbolize_keys! ⇒ Object Also known as: to_options!
Destructively convert all keys to symbols, as long as they respond to to_sym
.
24 25 26 27 28 29 |
# File 'lib/bitmask_attribute/core_ext/hash_with_indifferent_access.rb', line 24 def symbolize_keys! keys.each do |key| self[(key.to_sym rescue key) || key] = delete(key) end self end |