Method: Code42::Connection#method_missing
- Defined in:
- lib/code42/connection.rb
#method_missing(method_name, *args, &block) ⇒ Object (private)
129 130 131 132 |
# File 'lib/code42/connection.rb', line 129 def method_missing(method_name, *args, &block) return super unless adapter.respond_to?(method_name) adapter.send(method_name, *args, &block) end |