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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 710620ffc527dde72710f4bee67aefa23197bf3c
4
- data.tar.gz: 4b205cfed6e5833e42997b51bd8d7a3244c74092
3
+ metadata.gz: 53a4a18f259485f7da30b7413eb26805dc4b020e
4
+ data.tar.gz: a5e173405475bc7ae103eb3c6538bd1457afa76c
5
5
  SHA512:
6
- metadata.gz: 135237707cb007280b3da732cfb4bccdfba4eeb75b1e62d1ff84c3f727338e597fea4729ab63cfdbecbf79419a1b8d35aab24c80663380bf47ba25e61b7587bb
7
- data.tar.gz: 31bad0b8cde415df66ebc11ab00cc664a47495013ceda06336683b76f10bb32f44ad18c34b920cdbc03be9fa16728abd352d26c8c4eedc87318755a8e1718d03
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.8
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
- group :development, :test do
7
- gem "pry-rails"
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
@@ -1,3 +1,3 @@
1
1
  module SolidusGateway
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
@@ -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", "~> 1.1"
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.0
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-07-26 00:00:00.000000000 Z
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