class Configuration
Attributes
error_mode[RW]
skip_main_object_empty[RW]
Public Class Methods
new()
click to toggle source
# File lib/config/config.rb, line 4 def initialize @skip_main_object_empty = false @error_mode = 'strict' end
Public Instance Methods
[](value)
click to toggle source
# File lib/config/config.rb, line 9 def [](value) self.public_send(value) end