-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
34 lines (26 loc) · 924 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
30
31
32
33
34
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
gem 'solidus', github: 'solidusio/solidus', branch: branch
# Temporarily locking sprockets to v3.x
# see https://github.com/solidusio/solidus/issues/3374
# and https://github.com/rails/sprockets-rails/issues/369
gem 'sprockets', '~> 3'
# Provides basic authentication functionality for testing parts of your engine
gem 'solidus_auth_devise'
# This is needed to avoid incompatibilities between this extension and
# old versions of solidus (< 2.5). This can be reverted when Solidus 2.4
# reaches EOL. See https://github.com/solidusio/solidus/pull/2835
if branch < 'v2.5'
gem 'factory_bot', '4.10.0'
else
gem 'factory_bot', '> 4.10.0'
end
if ENV['DB'] == 'mysql'
gem 'mysql2', '~> 0.4.10'
else
gem 'pg', '~> 0.21'
end
gemspec