From bdf84ae532b5695c41649a73e7f53bcea08355cd Mon Sep 17 00:00:00 2001 From: Tom Naessens Date: Sun, 9 Jun 2024 21:04:37 +0200 Subject: [PATCH] Add rainbow for colored output on production --- Gemfile | 3 +++ Gemfile.lock | 1 + 2 files changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index d708c7a3..26c7814b 100644 --- a/Gemfile +++ b/Gemfile @@ -79,6 +79,9 @@ gem "sidekiq", "~> 7.0" # Use PostgreSQL as the database for Active Record gem "pg" +# Rainbow for colored output in irb, even in production +gem "rainbow" + # Test dependencies group :test do gem "rspec-rails" diff --git a/Gemfile.lock b/Gemfile.lock index b6dcb12d..2768743c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -416,6 +416,7 @@ DEPENDENCIES puma (~> 5.5.0) rails (~> 6.1) rails-controller-testing (~> 1.0) + rainbow rspec-rails rubocop (~> 1.30) rubocop-rails (~> 2.14)