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 15554c7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ source "https://rubygems.org"

gemspec

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.1.0")
gem "rspec-benchmark", "~> 0.6"
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 +20,10 @@ group :test do
end
end

if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.3.0")
gem "racc", "~> 1.7"
end

group :metrics do
gem "yardstick", "~> 0.9.9"
end

0 comments on commit 15554c7

Please sign in to comment.