Class: Bundler::CLI::Cache
- Inherits:
-
Object
- Object
- Bundler::CLI::Cache
- Defined in:
- lib/bundler/cli/cache.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#initialize(options) ⇒ Cache
constructor
A new instance of Cache.
- #run ⇒ Object
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 = end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/bundler/cli/cache.rb', line 5 def @options end |
Instance Method Details
#run ⇒ Object
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 = "warn" if [:quiet] Bundler.settings.set_command_option_if_given :path, [:path] Bundler.settings.set_command_option_if_given :cache_path, ["cache-path"] setup_cache_all install # TODO: move cache contents here now that all bundles are locked custom_path = Bundler.settings[:path] if [:path] Bundler.settings.temporary(cache_all_platforms: ["all-platforms"]) do Bundler.load.cache(custom_path) end end |