settingslogic
settingslogic copied to clipboard
Exceptions are thrown when trying to acces nested property while suppress_errors is enabled.
Example:
class Defaults < Settingslogic
....
suppress_errors true
end
Defaults.get('some.nonexistent.property') # Boom!
:+1: