# File lib/bundler/cli/package.rb, line 5 def initialize(options) @options = options end
# 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