From 2c2c44e8b1d4affe9926bc87c3740000dcf7f2f7 Mon Sep 17 00:00:00 2001 From: Piotr Murach Date: Sat, 2 Mar 2024 21:27:26 +0000 Subject: [PATCH] Change Gemfile to remove the test group --- Gemfile | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Gemfile b/Gemfile index 100a947..86f714d 100644 --- a/Gemfile +++ b/Gemfile @@ -2,15 +2,12 @@ source "https://rubygems.org" gemspec -# gem "tty-reader", git: "https://github.com/piotrmurach/tty-reader" -# gem "pastel", git: "https://github.com/piotrmurach/pastel" +gem "benchmark-ips", "~> 2.13.0" gem "json", "2.4.1" if RUBY_VERSION == "2.0.0" +# gem "pastel", git: "https://github.com/piotrmurach/pastel" +# gem "tty-reader", git: "https://github.com/piotrmurach/tty-reader" -group :test do - gem "benchmark-ips", "~> 2.13.0" - - if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7.0") - gem "coveralls_reborn", "~> 0.28.0" - gem "simplecov", "~> 0.22.0" - end +if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7.0") + gem "coveralls_reborn", "~> 0.28.0" + gem "simplecov", "~> 0.22.0" end