class Unrest::ConfigurationHash

Public Instance Methods

method_missing(meth, *args, &block) click to toggle source
Calls superclass method
# File lib/unrest/configuration_hash.rb, line 7
def method_missing(meth, *args, &block)
  has_key?(meth) ? self[meth] : super
end