class Gem::Commands::BundleCommand

def execute

def execute
  # Prevent the bundler from getting required unless it is actually being used
  require 'bundler'
  if options[:cache]
    Bundler::CLI.run(:cache, options)
  elsif options[:prune]
    Bundler::CLI.run(:prune, options)
  elsif options[:list]
    Bundler::CLI.run(:list, options)
  elsif options[:list_outdated]
    Bundler::CLI.run(:list_outdated, options)
  else
    Bundler::CLI.run(:bundle, options)
  end
end