Method: Inari::Configuration#method_missing
- Defined in:
- lib/inari/configuration.rb
#method_missing(sym, *args, &block) ⇒ Object
:nodoc:
120 121 122 123 124 125 126 |
# File 'lib/inari/configuration.rb', line 120 def method_missing(sym, *args, &block) #:nodoc: if args.length == 0 && block.nil? && @variables.has_key?(sym) self[sym] else super end end |