solidus_gateway 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +15 -10
- data/Gemfile +6 -2
- data/lib/solidus_gateway/version.rb +1 -1
- data/solidus_gateway.gemspec +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53a4a18f259485f7da30b7413eb26805dc4b020e
|
4
|
+
data.tar.gz: a5e173405475bc7ae103eb3c6538bd1457afa76c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 102239a4ac27b4d035bd5884616e7a5a2f2cac02a5e558c9ea209f3168d75fd6b7b6e83b858b0c2545527ab7a391d1e07274e0e784a57e1a22fc541d94222c88
|
7
|
+
data.tar.gz: f064d47f57ae61d47a0d99f25423d7773645ee77ec5bcb3044bf28f30b6f392ed3159fa07251dc4130a036588a89b15fd012df54d33d440f7f82288649947634
|
data/.travis.yml
CHANGED
@@ -1,14 +1,19 @@
|
|
1
1
|
sudo: false
|
2
2
|
cache: bundler
|
3
3
|
language: ruby
|
4
|
-
env:
|
5
|
-
- SOLIDUS_BRANCH=v1.1 DB=mysql
|
6
|
-
- SOLIDUS_BRANCH=v1.2 DB=mysql
|
7
|
-
- SOLIDUS_BRANCH=v1.3 DB=mysql
|
8
|
-
- SOLIDUS_BRANCH=master DB=mysql
|
9
|
-
- SOLIDUS_BRANCH=v1.1 DB=postgres
|
10
|
-
- SOLIDUS_BRANCH=v1.2 DB=postgres
|
11
|
-
- SOLIDUS_BRANCH=v1.3 DB=postgres
|
12
|
-
- SOLIDUS_BRANCH=master DB=postgres
|
13
4
|
rvm:
|
14
|
-
- 2.1
|
5
|
+
- 2.3.1
|
6
|
+
env:
|
7
|
+
matrix:
|
8
|
+
- SOLIDUS_BRANCH=v1.1 DB=postgres
|
9
|
+
- SOLIDUS_BRANCH=v1.2 DB=postgres
|
10
|
+
- SOLIDUS_BRANCH=v1.3 DB=postgres
|
11
|
+
- SOLIDUS_BRANCH=v1.4 DB=postgres
|
12
|
+
- SOLIDUS_BRANCH=v2.0 DB=postgres
|
13
|
+
- SOLIDUS_BRANCH=master DB=postgres
|
14
|
+
- SOLIDUS_BRANCH=v1.1 DB=mysql
|
15
|
+
- SOLIDUS_BRANCH=v1.2 DB=mysql
|
16
|
+
- SOLIDUS_BRANCH=v1.3 DB=mysql
|
17
|
+
- SOLIDUS_BRANCH=v1.4 DB=mysql
|
18
|
+
- SOLIDUS_BRANCH=v2.0 DB=mysql
|
19
|
+
- SOLIDUS_BRANCH=master DB=mysql
|
data/Gemfile
CHANGED
@@ -3,11 +3,15 @@ source "https://rubygems.org"
|
|
3
3
|
branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
|
4
4
|
gem "solidus", github: "solidusio/solidus", branch: branch
|
5
5
|
|
6
|
-
|
7
|
-
gem "
|
6
|
+
if branch == 'master' || branch >= "v2.0"
|
7
|
+
gem "rails-controller-testing", group: :test
|
8
8
|
end
|
9
9
|
|
10
10
|
gem 'pg'
|
11
11
|
gem 'mysql2'
|
12
12
|
|
13
|
+
group :development, :test do
|
14
|
+
gem "pry-rails"
|
15
|
+
end
|
16
|
+
|
13
17
|
gemspec
|
data/solidus_gateway.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.require_path = "lib"
|
24
24
|
s.requirements << "none"
|
25
25
|
|
26
|
-
s.add_dependency "solidus_core", "
|
26
|
+
s.add_dependency "solidus_core", [">= 1.1", "< 3"]
|
27
27
|
|
28
28
|
# ActiveMerchant v1.58 through v1.59 introduced a breaking change
|
29
29
|
# to the stripe gateway.
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: solidus_gateway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Solidus Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: solidus_core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.1'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: '1.1'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: activemerchant
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|