├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── ci.yml │ └── push.yml ├── .gitignore ├── .kodiak.toml ├── .overcommit.yml ├── .prettierignore ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── bundleup.gemspec ├── demo.gif ├── exe └── bundleup ├── lib ├── bundleup.rb └── bundleup │ ├── backup.rb │ ├── cli.rb │ ├── colors.rb │ ├── commands.rb │ ├── gemfile.rb │ ├── logger.rb │ ├── pin_report.rb │ ├── report.rb │ ├── shell.rb │ ├── update_report.rb │ ├── version.rb │ └── version_spec.rb └── test ├── bundleup ├── backup_test.rb ├── cli_test.rb ├── commands_test.rb ├── gemfile_test.rb ├── logger_test.rb ├── pin_report_test.rb ├── update_report_test.rb └── version_spec_test.rb ├── bundleup_test.rb ├── fixtures ├── Gemfile.sample ├── list.out ├── outdated-2.1.out ├── outdated-2.2.out └── project │ ├── Gemfile │ └── Gemfile.lock ├── support ├── mocha.rb ├── output_helpers.rb └── rg.rb └── test_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/.gitignore -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/.kodiak.toml -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /CODE_OF_CONDUCT.md 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/bin/setup -------------------------------------------------------------------------------- /bundleup.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/bundleup.gemspec -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/demo.gif -------------------------------------------------------------------------------- /exe/bundleup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/exe/bundleup -------------------------------------------------------------------------------- /lib/bundleup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup.rb -------------------------------------------------------------------------------- /lib/bundleup/backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/backup.rb -------------------------------------------------------------------------------- /lib/bundleup/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/cli.rb -------------------------------------------------------------------------------- /lib/bundleup/colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/colors.rb -------------------------------------------------------------------------------- /lib/bundleup/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/commands.rb -------------------------------------------------------------------------------- /lib/bundleup/gemfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/gemfile.rb -------------------------------------------------------------------------------- /lib/bundleup/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/logger.rb -------------------------------------------------------------------------------- /lib/bundleup/pin_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/pin_report.rb -------------------------------------------------------------------------------- /lib/bundleup/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/report.rb -------------------------------------------------------------------------------- /lib/bundleup/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/shell.rb -------------------------------------------------------------------------------- /lib/bundleup/update_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/update_report.rb -------------------------------------------------------------------------------- /lib/bundleup/version.rb: -------------------------------------------------------------------------------- 1 | module Bundleup 2 | VERSION = "2.5.4".freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/bundleup/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/lib/bundleup/version_spec.rb -------------------------------------------------------------------------------- /test/bundleup/backup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup/backup_test.rb -------------------------------------------------------------------------------- /test/bundleup/cli_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup/cli_test.rb -------------------------------------------------------------------------------- /test/bundleup/commands_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup/commands_test.rb -------------------------------------------------------------------------------- /test/bundleup/gemfile_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup/gemfile_test.rb -------------------------------------------------------------------------------- /test/bundleup/logger_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup/logger_test.rb -------------------------------------------------------------------------------- /test/bundleup/pin_report_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup/pin_report_test.rb -------------------------------------------------------------------------------- /test/bundleup/update_report_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup/update_report_test.rb -------------------------------------------------------------------------------- /test/bundleup/version_spec_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup/version_spec_test.rb -------------------------------------------------------------------------------- /test/bundleup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/bundleup_test.rb -------------------------------------------------------------------------------- /test/fixtures/Gemfile.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/fixtures/Gemfile.sample -------------------------------------------------------------------------------- /test/fixtures/list.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/fixtures/list.out -------------------------------------------------------------------------------- /test/fixtures/outdated-2.1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/fixtures/outdated-2.1.out -------------------------------------------------------------------------------- /test/fixtures/outdated-2.2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/fixtures/outdated-2.2.out -------------------------------------------------------------------------------- /test/fixtures/project/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/fixtures/project/Gemfile -------------------------------------------------------------------------------- /test/fixtures/project/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/fixtures/project/Gemfile.lock -------------------------------------------------------------------------------- /test/support/mocha.rb: -------------------------------------------------------------------------------- 1 | require "mocha/minitest" 2 | -------------------------------------------------------------------------------- /test/support/output_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/support/output_helpers.rb -------------------------------------------------------------------------------- /test/support/rg.rb: -------------------------------------------------------------------------------- 1 | # Enable color test output 2 | require "minitest/rg" 3 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbrictson/bundleup/HEAD/test/test_helper.rb --------------------------------------------------------------------------------