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 5, 2024
1 parent a794412 commit 434ed5f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ source "https://rubygems.org"

gemspec

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.1.0")
gem "rspec-benchmark", "~> 0.6"
group :metrics do
gem "yardstick", "~> 0.9.9"
end

if RUBY_VERSION == "2.0.0"
gem "json", "2.4.1"
gem "rexml", "3.2.4"
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.3.0")
gem "racc", "~> 1.7"

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

group :test do
Expand All @@ -22,6 +24,6 @@ group :test do
end
end

group :metrics do
gem "yardstick", "~> 0.9.9"
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.3.0")
gem "racc", "~> 1.7"
end

0 comments on commit 434ed5f

Please sign in to comment.