Method: EasySwig::ApiNode#method_missing
- Defined in:
- lib/apinodes/api_node.rb
#method_missing(sym, *args) ⇒ Object
Redirects calls to lang_settings before completely initialized and to wrapper_node afterwards
19 20 21 22 23 24 25 |
# File 'lib/apinodes/api_node.rb', line 19 def method_missing sym, *args if @wrapped_node.nil? @features.send sym, *args else @wrapped_node.send sym, *args end end |