Class: Bundleup::CLI
- Inherits:
-
Object
- Object
- Bundleup::CLI
- Extended by:
- Forwardable
- Includes:
- Colors
- Defined in:
- lib/bundleup/cli.rb
Constant Summary collapse
- Error =
Class.new(StandardError)
Instance Attribute Summary collapse
-
#pinned_gems ⇒ Object
readonly
Returns the value of attribute pinned_gems.
-
#updated_gems ⇒ Object
readonly
Returns the value of attribute updated_gems.
Instance Method Summary collapse
-
#initialize(args) ⇒ CLI
constructor
A new instance of CLI.
-
#run ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/MethodLength.
Methods included from Colors
Constructor Details
#initialize(args) ⇒ CLI
Returns a new instance of CLI.
13 14 15 16 17 18 |
# File 'lib/bundleup/cli.rb', line 13 def initialize(args) @args = args.dup @update_gemfile = @args.delete("--update-gemfile") @updated_gems = [] @pinned_gems = [] end |
Instance Attribute Details
#pinned_gems ⇒ Object (readonly)
Returns the value of attribute pinned_gems.
11 12 13 |
# File 'lib/bundleup/cli.rb', line 11 def pinned_gems @pinned_gems end |
#updated_gems ⇒ Object (readonly)
Returns the value of attribute updated_gems.
11 12 13 |
# File 'lib/bundleup/cli.rb', line 11 def updated_gems @updated_gems end |
Instance Method Details
#run ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/MethodLength
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/bundleup/cli.rb', line 20 def run # rubocop:disable Metrics/AbcSize, Metrics/MethodLength print_usage && return if args.intersect?(%w[-h --help]) @updated_gems = [] @pinned_gems = [] assert_gemfile_and_lock_exist! logger.puts "Please wait a moment while I upgrade your Gemfile.lock..." Backup.restore_on_error("Gemfile", "Gemfile.lock") do |backup| perform_analysis_and_optionally_bump_gemfile_versions do |update_report, pin_report| if update_report.empty? logger.ok "Nothing to update." logger.puts "\n#{pin_report}" unless pin_report.empty? break end logger.puts logger.puts update_report logger.puts pin_report unless pin_report.empty? if logger.confirm?("Do you want to apply these changes?") @updated_gems = update_report.updated_gems @pinned_gems = pin_report.pinned_gems logger.ok "Done!" else backup.restore logger.puts "Your original Gemfile.lock has been restored." end end end end |