class Bundler::CLI::Package

Attributes

options[R]

Public Class Methods

new(options) click to toggle source
# File lib/bundler/cli/package.rb, line 5
def initialize(options)
  @options = options
end

Public Instance Methods

run() click to toggle source
# File lib/bundler/cli/package.rb, line 9
def run
  Bundler.ui.level = "warn" if options[:quiet]
  Bundler.settings[:path] = File.expand_path(options[:path]) if options[:path]
  setup_cache_all
  install
  # TODO: move cache contents here now that all bundles are locked
  custom_path = Pathname.new(options[:path]) if options[:path]
  Bundler.load.cache(custom_path)
end