-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
35 lines (27 loc) · 915 Bytes
/
Gemfile
File metadata and controls
35 lines (27 loc) · 915 Bytes
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
35
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'spree_dev_tools', '>= 0.6.0.rc1'
gem 'rails-controller-testing'
spree_opts = if ENV['SPREE_PATH']
{ 'path': ENV['SPREE_PATH'] }
else
{ 'github': 'spree/spree', 'branch': 'main', 'glob': 'spree/**/*.gemspec' }
end
gem 'spree', spree_opts
gem 'spree_admin', spree_opts
gem 'spree_posts', { github: 'spree/spree-posts', branch: 'main' }
spree_storefront_opts = { github: 'spree/spree-rails-storefront', branch: 'main', glob: '**/*.gemspec' }
gem 'spree_storefront', spree_storefront_opts
gem 'spree_page_builder', spree_storefront_opts
if ENV['DB'] == 'mysql'
gem 'mysql2'
elsif ENV['DB'] == 'postgres'
gem 'pg'
else
gem 'sqlite3'
end
gem 'propshaft'
gemspec