We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca3e1c5 commit 25c594dCopy full SHA for 25c594d
Gemfile
@@ -4,7 +4,13 @@ source 'https://rubygems.org'
4
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
5
6
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
7
-gem 'solidus', github: 'solidusio/solidus', branch: branch
+solidus_git, solidus_frontend_git = if (branch == 'master') || (branch >= 'v3.2')
8
+ %w[solidusio/solidus solidusio/solidus_frontend]
9
+ else
10
+ %w[solidusio/solidus] * 2
11
+ end
12
+gem 'solidus', github: solidus_git, branch: branch
13
+gem 'solidus_frontend', github: solidus_frontend_git, branch: branch
14
15
# Needed to help Bundler figure out how to resolve dependencies,
16
# otherwise it takes forever to resolve them.
0 commit comments