Object
Wrap `method_missing` to proxy to `@data`.
# File lib/app_config/storage/base.rb, line 14 def method_missing(name, *args) unless @data.nil? if name =~ /.+=$/ # Caller is a setter. @data.send(name.to_sym, *args[0]) else @data.send(name.to_sym) end end end
Generated with the Darkfish Rdoc Generator 2.