Skip to content

Commit

Permalink
Chore(Gemfile): Group duplicate entries
Browse files Browse the repository at this point in the history
Bundler is unhappy about duplicate entries in the Gemfile. This creates
a couple of new `group` statements that remove those duplications.

This makes the Gemfile harder to read, unfortunately.
  • Loading branch information
mamhoff committed Dec 10, 2024
1 parent 2746d68 commit 8849ae3
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,27 +56,22 @@ group :backend do
end

group :admin do
gem 'solidus_admin', path: 'admin', require: false
gem 'tailwindcss-rails', '~> 3.0', require: false
end

group :admin, :legacy_promotions, :promotions do
gem 'solidus_admin', path: 'admin', require: false
gem 'axe-core-rspec', '~> 4.8', require: false
gem 'axe-core-capybara', '~> 4.8', require: false
end

group :legacy_promotions do
group :legacy_promotions, :promotions do
gem 'solidus_legacy_promotions', path: 'legacy_promotions', require: false
gem 'solidus_admin', path: 'admin', require: false
gem 'solidus_backend', path: 'backend', require: false
gem 'axe-core-rspec', '~> 4.8', require: false
gem 'axe-core-capybara', '~> 4.8', require: false
end

group :promotions do
gem 'solidus_promotions', path: 'promotions', require: false
gem 'solidus_legacy_promotions', path: 'legacy_promotions', require: false
gem 'solidus_admin', path: 'admin', require: false
gem 'solidus_backend', path: 'backend', require: false
gem 'axe-core-rspec', '~> 4.8', require: false
gem 'axe-core-capybara', '~> 4.8', require: false
gem 'shoulda-matchers', '~> 5.0', require: false
end

Expand Down

0 comments on commit 8849ae3

Please sign in to comment.