Class: Bundler::CLI::Cache

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Cache

Returns a new instance of Cache.



7
8
9
# File 'lib/bundler/cli/cache.rb', line 7

def initialize(options)
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/bundler/cli/cache.rb', line 5

def options
  @options
end

Instance Method Details

#runObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/bundler/cli/cache.rb', line 11

def run
  Bundler.ui.level = "error" if options[:quiet]
  Bundler.settings.set_command_option_if_given :path, options[:path]
  Bundler.settings.set_command_option_if_given :cache_path, options["cache-path"]

  setup_cache_all
  install

  # TODO: move cache contents here now that all bundles are locked
  custom_path = Bundler.settings[:path] if options[:path]

  Bundler.settings.temporary(:cache_all_platforms => options["all-platforms"]) do
    Bundler.load.cache(custom_path)
  end
end