Skip to content

Commit

Permalink
Change Gemfile to reorder dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmurach committed Apr 1, 2024
1 parent 04edc83 commit 68f9ae0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ source "https://rubygems.org"

gemspec

gem "json", "2.4.1" if RUBY_VERSION == "2.0.0"
gem "pastel", "~> 0.8"
gem "yardstick", "~> 0.9.9"

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.1.0")
gem "rspec-benchmark", "~> 0.6"
end
gem "json", "2.4.1" if RUBY_VERSION == "2.0.0"
gem "pastel", "~> 0.8"

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.5.0")
gem "coveralls_reborn", "~> 0.21.0"
gem "simplecov", "~> 0.21.0"
end
gem "yardstick", "~> 0.9.9"

0 comments on commit 68f9ae0

Please sign in to comment.