Method: Bundler::Plugin::API#method_missing

Defined in:
lib/bundler/plugin/api.rb

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



67
68
69
70
71
72
73
# File 'lib/bundler/plugin/api.rb', line 67

def method_missing(name, *args, &blk)
  return Bundler.send(name, *args, &blk) if Bundler.respond_to?(name)

  return SharedHelpers.send(name, *args, &blk) if SharedHelpers.respond_to?(name)

  super
end