Method: Docka::Machine#method_missing

Defined in:
lib/docka/machine.rb

#method_missing(name, *args, &block) ⇒ Object



72
73
74
75
76
77
78
# File 'lib/docka/machine.rb', line 72

def method_missing(name, *args, &block)
  if %i[host_ip no_share_option].include?(name)
    extend_driver
    return __send__ name, *args, &block
  end
  super
end