forked from solidusio/solidus_subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
29 lines (23 loc) · 734 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
source 'https://rubygems.org'
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
gem 'solidus', github: 'solidusio/solidus', branch: branch
# Provides basic authentication functionality for testing parts of your engine
gem 'solidus_auth_devise'
# Needed to help Bundler figure out how to resolve dependencies,
# otherwise it takes forever to resolve them
if branch == 'master' || Gem::Version.new(branch[1..-1]) >= Gem::Version.new('2.10.0')
gem 'rails', '~> 6.0'
else
gem 'rails', '~> 5.0'
end
case ENV['DB']
when 'mysql'
gem 'mysql2', '~> 0.4.10'
when 'postgresql'
gem 'pg', '~> 0.21'
else
gem 'sqlite3'
end
gem 'listen'
gem 'solidus_extension_dev_tools', github: 'solidusio-contrib/solidus_extension_dev_tools'
gemspec