Class: Thor::CoreExt::HashWithIndifferentAccess
- Inherits:
-
Hash
- Object
- Hash
- Thor::CoreExt::HashWithIndifferentAccess
show all
- Defined in:
- lib/thor/core_ext/hash_with_indifferent_access.rb
Overview
A hash with indifferent access and magic predicates.
hash = Thor::CoreExt::HashWithIndifferentAccess.new 'foo' => 'bar', 'baz' => 'bee', 'force' => true
hash[:foo] hash['foo'] hash.foo?
Instance Method Summary
collapse
Constructor Details
12
13
14
15
16
17
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 12
def initialize(hash = {})
super()
hash.each do |key, value|
self[convert_key(key)] = value
end
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args) ⇒ Object
Magic predicates. For instance:
options.force? options.shebang options.test_framework?(:rspec)
93
94
95
96
97
98
99
100
101
102
103
104
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 93
def method_missing(method, *args)
method = method.to_s
if method =~ /^(\w+)\?$/
if args.empty?
!!self[$1]
else
self[$1] == args.first
end
else
self[method]
end
end
|
Instance Method Details
#[](key) ⇒ Object
19
20
21
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 19
def [](key)
super(convert_key(key))
end
|
#[]=(key, value) ⇒ Object
23
24
25
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 23
def []=(key, value)
super(convert_key(key), value)
end
|
#delete(key) ⇒ Object
27
28
29
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 27
def delete(key)
super(convert_key(key))
end
|
#except(*keys) ⇒ Object
31
32
33
34
35
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 31
def except(*keys)
dup.tap do |hash|
keys.each { |key| hash.delete(convert_key(key)) }
end
end
|
#fetch(key, *args) ⇒ Object
37
38
39
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 37
def fetch(key, *args)
super(convert_key(key), *args)
end
|
#key?(key) ⇒ Boolean
45
46
47
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 45
def key?(key)
super(convert_key(key))
end
|
#merge(other) ⇒ Object
53
54
55
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 53
def merge(other)
dup.merge!(other)
end
|
#merge!(other) ⇒ Object
57
58
59
60
61
62
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 57
def merge!(other)
other.each do |key, value|
self[convert_key(key)] = value
end
self
end
|
#replace(other_hash) ⇒ Object
72
73
74
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 72
def replace(other_hash)
super(other_hash)
end
|
#reverse_merge(other) ⇒ Object
64
65
66
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 64
def reverse_merge(other)
self.class.new(other).merge(self)
end
|
#reverse_merge!(other_hash) ⇒ Object
68
69
70
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 68
def reverse_merge!(other_hash)
replace(reverse_merge(other_hash))
end
|
#slice(*keys) ⇒ Object
41
42
43
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 41
def slice(*keys)
super(*keys.map{ |key| convert_key(key) })
end
|
#to_hash ⇒ Object
Convert to a Hash with String keys.
77
78
79
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 77
def to_hash
Hash.new(default).merge!(self)
end
|
#values_at(*indices) ⇒ Object
49
50
51
|
# File 'lib/thor/core_ext/hash_with_indifferent_access.rb', line 49
def values_at(*indices)
indices.map { |key| self[convert_key(key)] }
end
|