Class: Bundler::CLI::Package

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/cli/package.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Package

Returns a new instance of Package.



6
7
8
# File 'lib/bundler/cli/package.rb', line 6

def initialize(options)
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



4
5
6
# File 'lib/bundler/cli/package.rb', line 4

def options
  @options
end

Instance Method Details

#runObject



10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/bundler/cli/package.rb', line 10

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