-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (38 loc) · 1.14 KB
/
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
35
36
37
38
39
40
41
42
43
source 'https://rubygems.org'
# gem 'rails', '4.2.1'
gem 'rails', '4.2.2'
ruby '2.2.2'
gem 'mysql'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
end
group :spree do
# gem 'spree', '3.0.1'
# gem 'spree_core', '~> 3.0', '>= 3.0.4'
gem 'spree_liqpay', github: 'kukareka/spree_liqpay'
gem 'spree_paypal_express', github: 'spree-contrib/better_spree_paypal_express', branch: '3-0-stable'
# gem 'spree_static_content', github: 'spree-contrib/spree_static_content', branch: 'master'
gem 'spree_editor'
end
gem 'spree', '3.0.3'
gem 'spree_core'
gem 'spree_gateway', github: 'spree/spree_gateway', branch: '3-0-stable'
gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: '3-0-stable'
gem 'spree_static_content', github: 'adavanisanti/spree_static_content', branch: 'master'
group :production do
gem 'rails_12factor'
gem 'pg'
gem 'puma'
end
gem 'aws-sdk', '< 2.0'
gem 'paperclip'
gem 'newrelic_rpm'