Method: Fog::VirtualBox::Compute::Real#method_missing
- Defined in:
- lib/fog/compute/virtual_box.rb
#method_missing(method_sym, *arguments, &block) ⇒ Object
hack to provide ‘requests’
37 38 39 40 41 42 43 |
# File 'lib/fog/compute/virtual_box.rb', line 37 def method_missing(method_sym, *arguments, &block) if @connection.respond_to?(method_sym) @connection.send(method_sym, *arguments) else super end end |