-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (30 loc) · 1.07 KB
/
Gemfile
File metadata and controls
40 lines (30 loc) · 1.07 KB
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
36
37
38
39
40
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 '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'
gem 'spree_legacy_product_properties', github: 'spree/spree_legacy_product_properties', branch: 'main'
spree_storefront_opts = { 'github': 'spree/spree-rails-storefront', 'branch': 'main' }
gem 'spree_page_builder', spree_storefront_opts
gem 'spree_storefront', spree_storefront_opts
gem 'spree_multi_store', github: 'spree/spree-multi-store', branch: 'main'
gem 'spree_legacy_api_v2'
gem 'spree_dev_tools', '>= 0.6.0.rc1'
if ENV['DB'] == 'mysql'
gem 'mysql2'
elsif ENV['DB'] == 'postgres'
gem 'pg'
else
gem 'sqlite3'
end
gem 'propshaft'
gemspec