Method: Web47core::Config.method_missing
- Defined in:
- lib/web47core/config.rb
.method_missing(method, *args, &block) ⇒ Object
Provide access to the instance accessors through static methods
42 43 44 45 46 47 48 |
# File 'lib/web47core/config.rb', line 42 def self.method_missing(method, *args, &block) if instance.respond_to?(method) instance.send(method, *args) else super end end |