Class: Foreman::Thor::CoreExt::HashWithIndifferentAccess

Inherits:
Hash
  • Object
show all
Defined in:
lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb

Overview

A hash with indifferent access and magic predicates.

hash = Foreman::Thor::CoreExt::HashWithIndifferentAccess.new 'foo' => 'bar', 'baz' => 'bee', 'force' => true

hash[:foo]  #=> 'bar'
hash['foo'] #=> 'bar'
hash.foo?   #=> true

Instance Method Summary collapse

Constructor Details

#initialize(hash = {}) ⇒ HashWithIndifferentAccess

:nodoc:



12
13
14
15
16
17
# File 'lib/foreman/vendor/thor/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 (protected)

Magic predicates. For instance:

options.force?                  # => !!options['force']
options.shebang                 # => "/usr/lib/local/ruby"
options.test_framework?(:rspec) # => options[:test_framework] == :rspec


71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb', line 71

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/foreman/vendor/thor/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/foreman/vendor/thor/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/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb', line 27

def delete(key)
  super(convert_key(key))
end

#fetch(key, *args) ⇒ Object



31
32
33
# File 'lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb', line 31

def fetch(key, *args)
  super(convert_key(key), *args)
end

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb', line 35

def key?(key)
  super(convert_key(key))
end

#merge(other) ⇒ Object



43
44
45
# File 'lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb', line 43

def merge(other)
  dup.merge!(other)
end

#merge!(other) ⇒ Object



47
48
49
50
51
52
# File 'lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb', line 47

def merge!(other)
  other.each do |key, value|
    self[convert_key(key)] = value
  end
  self
end

#to_hashObject

Convert to a Hash with String keys.



55
56
57
# File 'lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb', line 55

def to_hash
  Hash.new(default).merge!(self)
end

#values_at(*indices) ⇒ Object



39
40
41
# File 'lib/foreman/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb', line 39

def values_at(*indices)
  indices.map { |key| self[convert_key(key)] }
end