We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5fec9c commit c1aeff2Copy full SHA for c1aeff2
1 file changed
lib/solidus_dev_support/templates/extension/Gemfile
@@ -6,6 +6,10 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
6
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
7
gem 'solidus', github: 'solidusio/solidus', branch: branch
8
9
+# The solidus_frontend gem has been pulled out since v3.2
10
+gem 'solidus_frontend', github: 'solidusio/solidus_frontend' if branch == 'master'
11
+gem 'solidus_frontend' if branch >= 'v3.2' # rubocop:disable Bundler/DuplicatedGem
12
+
13
# Needed to help Bundler figure out how to resolve dependencies,
14
# otherwise it takes forever to resolve them.
15
# See https://github.com/bundler/bundler/issues/6677
0 commit comments