forked from amazon-archives/spree_pay_with_amazon
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
40 lines (33 loc) · 837 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
35
36
37
38
39
40
##
# Amazon Payments - Login and Pay for Spree Commerce
#
# @category Amazon
# @package Amazon_Payments
# @copyright Copyright (c) 2014 Amazon.com
# @license http://opensource.org/licenses/Apache-2.0 Apache License, Version 2.0
#
##
source 'https://rubygems.org'
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
gem "solidus", github: "solidusio/solidus", branch: branch
if branch == 'master' || branch >= 'v2.0'
gem 'rails-controller-testing', group: :test
else
gem 'rails', '~> 4.2.0'
gem 'rails_test_params_backport'
end
group :development, :test do
gem 'pry-rails'
if branch < "v2.5"
gem 'factory_bot', '4.10.0'
else
gem 'factory_bot', '> 4.10.0'
end
end
group :test do
gem 'codeclimate-test-reporter', require: nil
gem 'webmock'
end
gem 'pg', '~> 0.21'
gem 'mysql2', '~> 0.4.10'
gemspec