Method: AlphaApi::Application#method_missing
- Defined in:
- lib/alpha_api/application.rb
#method_missing(method, *args) ⇒ Object
23 24 25 26 27 28 29 30 31 |
# File 'lib/alpha_api/application.rb', line 23 def method_missing(method, *args) if settings.respond_to?(method) settings.send(method, *args) elsif namespace_settings.respond_to?(method) namespace_settings.send(method, *args) else super end end |