Skip to content

Commit

Permalink
Wip
Browse files Browse the repository at this point in the history
  • Loading branch information
waiting-for-dev committed Feb 14, 2023
1 parent 32d8627 commit 1830562
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ gem 'solidus', github: 'solidusio/solidus', branch: branch
gem 'solidus_backend', github: 'solidusio/solidus', branch: branch

# The solidus_frontend gem has been pulled out since v3.2
gem 'solidus_frontend', github: 'solidusio/solidus_frontend' if branch == 'master'
gem 'solidus_frontend' if branch >= 'v3.2' # rubocop:disable Bundler/DuplicatedGem
if branch >= 'v3.2'
gem 'solidus_frontend'
elsif branch == 'master'
gem 'solidus_frontend', github: 'solidusio/solidus_frontend'
else
gem 'solidus_frontend', github: 'solidusio/solidus', branch: branch
end

case ENV.fetch('DB', nil)
when 'mysql'
Expand Down

0 comments on commit 1830562

Please sign in to comment.