module Constantinopolis::AccessableHash

Public Instance Methods

method_missing(name, *args, &block) click to toggle source
Calls superclass method
# File lib/constantinopolis.rb, line 81
def method_missing(name, *args, &block)
  key = name.to_s
  self.has_key?(key) ? self[key] : super
end