class Bundler::CLI

def install(path = nil)

def install(path = nil)
  opts = options.dup
  opts[:without] ||= []
  opts[:without].map! { |g| g.to_sym }
  Bundler.settings[:path] = path if path
  Installer.install(Bundler.root, Bundler.definition, opts)
end