class Thor::CoreExt::HashWithIndifferentAccess
Public Instance Methods
Source
# File lib/berkshelf/thor_ext/hash_with_indifferent_access.rb, line 8 def fetch(key, default = nil) if default super(convert_key(key), default) else super(convert_key(key)) end end
Calls superclass method
Source
# File lib/berkshelf/thor_ext/hash_with_indifferent_access.rb, line 4 def has_key?(key) super(convert_key(key)) end
Calls superclass method