Skip to content

Commit

Permalink
Fix colorize missing call
Browse files Browse the repository at this point in the history
Pull Request #120 removed Colorize in favor of Rainbow,
`bundle_report/ruby_version_compatibility.rb` was using Colorize and we
need to update it to use Rainbow
  • Loading branch information
JuanVqz committed Sep 22, 2024
1 parent cb7e090 commit d6daf4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Your changes/patches go here.

- [CHORE: Update compatibility for Ruby versions to use Rainbow](https://github.com/fastruby/next_rails/pull/125)
- [FEATURE: Support compatibility for Ruby versions](https://github.com/fastruby/next_rails/pull/116)
- [CHORE: Remove GPL licensed dependency Colorize and replace it with Rainbow]

Expand Down
4 changes: 3 additions & 1 deletion lib/next_rails/bundle_report/ruby_version_compatibility.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
require "colorize"
require "rainbow/refinement"

using Rainbow

class NextRails::BundleReport::RubyVersionCompatibility
MINIMAL_VERSION = 1.0
Expand Down

0 comments on commit d6daf4d

Please sign in to comment.