class GarconHash
Public Instance Methods
method_missing(method_name, *args)
click to toggle source
Calls superclass method
# File lib/garcon/utility/misc.rb, line 45 def method_missing(method_name, *args) return super unless respond_to?(method_name) self[method_name].to_s end
respond_to?(symbol, include_private=false)
click to toggle source
Calls superclass method
# File lib/garcon/utility/misc.rb, line 50 def respond_to?(symbol, include_private=false) return true if key?(symbol.to_s) super end