BasicObject
This is the root configatron object, and contains methods which operate on the entire configatron hierarchy.
# File lib/configatron/root_store.rb, line 49 def lock! @locked = true end
# File lib/configatron/root_store.rb, line 45 def locked? @locked end
# File lib/configatron/root_store.rb, line 23 def method_missing(name, *args, &block) store.__send__(name, *args, &block) end
# File lib/configatron/root_store.rb, line 27 def reset! @store = ::Configatron::Store.new(self) end
# File lib/configatron/root_store.rb, line 31 def temp(&block) temp_start yield temp_end end
# File lib/configatron/root_store.rb, line 41 def temp_end @store = @temp end
Generated with the Darkfish Rdoc Generator 2.