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 = "error" if options[:quiet] Bundler.settings[:path] = File.expand_path(options[:path]) if options[:path] Bundler.settings[:cache_all_platforms] = options["all-platforms"] if options.key?("all-platforms") Bundler.settings[:cache_path] = options["cache-path"] if options.key?("cache-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