active_shipping 1.13.1 → 1.13.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd54ce58b97bec268d53f643acfc848c80c74ca5
4
- data.tar.gz: f8a1e7ffb41dc0f718f6b2572a47229297892e06
3
+ metadata.gz: eac04ea30bfda9ffec4adfe13de0c4dabd4ebe69
4
+ data.tar.gz: 960fc2506a4e244125d53136cbeaaa777f10fca3
5
5
  SHA512:
6
- metadata.gz: 6a5a1cd82b023673f623358d33cbcfb9837847f0514459210746d62912aa5c45cf3fc67eb2760c64cad7c5e3960699342ca7088aef9636f57232da7c5c3f51f5
7
- data.tar.gz: 4e21734a33afa3e6f077767328ea6f277ee366e376dfd8b1c719b746ec14b1d357a2ae01243485381653c44144442992f23a8af71a765f87322937983032cd09
6
+ metadata.gz: a2ba4217456c82b4d5b7ce05d93f1191a856781e97ecba893173d02ca055ce9213cdab4d7e0d808ea1900a0d80e8e771c3ec1b74664ec366adaad6a62a9f773c
7
+ data.tar.gz: ed16ffc04b809427a91e2739247c4e09bf45c85543a6650564bb780dd96d3c077f631123f4179fe6218283ddbb1acf0d662b317b74121e0616bbeab4a529f781
data/.travis.yml CHANGED
@@ -10,14 +10,26 @@ rvm:
10
10
 
11
11
  gemfile:
12
12
  - gemfiles/activesupport32.gemfile
13
+ - gemfiles/activesupport32_nokogiri_17.gemfile
13
14
  - gemfiles/activesupport40.gemfile
15
+ - gemfiles/activesupport40_nokogiri_17.gemfile
14
16
  - gemfiles/activesupport41.gemfile
17
+ - gemfiles/activesupport41_nokogiri_17.gemfile
15
18
  - gemfiles/activesupport42.gemfile
19
+ - gemfiles/activesupport42_nokogiri_17.gemfile
16
20
  - gemfiles/activesupport50.gemfile
17
21
  - gemfiles/activesupport_master.gemfile
18
22
 
19
23
  matrix:
20
24
  exclude:
25
+ - rvm: "2.0"
26
+ gemfile: gemfiles/activesupport32_nokogiri_17.gemfile
27
+ - rvm: "2.0"
28
+ gemfile: gemfiles/activesupport40_nokogiri_17.gemfile
29
+ - rvm: "2.0"
30
+ gemfile: gemfiles/activesupport41_nokogiri_17.gemfile
31
+ - rvm: "2.0"
32
+ gemfile: gemfiles/activesupport42_nokogiri_17.gemfile
21
33
  - rvm: "2.0"
22
34
  gemfile: gemfiles/activesupport50.gemfile
23
35
  - rvm: "2.0"
@@ -19,9 +19,9 @@ Gem::Specification.new do |s|
19
19
  s.require_path = "lib"
20
20
 
21
21
  s.add_dependency("quantified", "~> 1.0.1")
22
- s.add_dependency("activesupport", ">= 3.2", "< 5.1.0")
23
- s.add_dependency("active_utils", "~> 3.3.0")
24
- s.add_dependency("nokogiri", "= 1.6.8")
22
+ s.add_dependency("activesupport", ">= 3.2", "< 5.2.0")
23
+ s.add_dependency("active_utils", "~> 3.3.1")
24
+ s.add_dependency("nokogiri", ">= 1.6.8")
25
25
 
26
26
  s.add_development_dependency("minitest")
27
27
  s.add_development_dependency("rake")
@@ -2,5 +2,6 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec path: '..'
4
4
 
5
+ gem 'nokogiri', '= 1.6.8'
5
6
  gem 'activesupport', '~> 3.2.0'
6
7
  gem 'tzinfo'
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec path: '..'
4
+
5
+ gem 'nokogiri', '>= 1.7'
6
+ gem 'activesupport', '~> 3.2.0'
7
+ gem 'tzinfo'
@@ -2,4 +2,5 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec path: '..'
4
4
 
5
+ gem 'nokogiri', '= 1.6.8'
5
6
  gem 'activesupport', '~> 4.0.0'
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec path: '..'
4
+
5
+ gem 'nokogiri', '>= 1.7'
6
+ gem 'activesupport', '~> 4.1.0'
@@ -2,4 +2,5 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec path: '..'
4
4
 
5
+ gem 'nokogiri', '= 1.6.8'
5
6
  gem 'activesupport', '~> 4.1.0'
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec path: '..'
4
+
5
+ gem 'nokogiri', '>= 1.7'
6
+ gem 'activesupport', '~> 4.1.0'
@@ -2,4 +2,5 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec path: '..'
4
4
 
5
+ gem 'nokogiri', '= 1.6.8'
5
6
  gem 'activesupport', '~> 4.2.0'
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec path: '..'
4
+
5
+ gem 'nokogiri', '>= 1.7'
6
+ gem 'activesupport', '~> 4.2.0'
@@ -1,3 +1,3 @@
1
1
  module ActiveShipping
2
- VERSION = "1.13.1"
2
+ VERSION = "1.13.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_shipping
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.1
4
+ version: 1.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-21 00:00:00.000000000 Z
11
+ date: 2017-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: quantified
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3.2'
34
34
  - - "<"
35
35
  - !ruby/object:Gem::Version
36
- version: 5.1.0
36
+ version: 5.2.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,33 +43,33 @@ dependencies:
43
43
  version: '3.2'
44
44
  - - "<"
45
45
  - !ruby/object:Gem::Version
46
- version: 5.1.0
46
+ version: 5.2.0
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: active_utils
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: 3.3.0
53
+ version: 3.3.1
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: 3.3.0
60
+ version: 3.3.1
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: nokogiri
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
- - - '='
65
+ - - ">="
66
66
  - !ruby/object:Gem::Version
67
67
  version: 1.6.8
68
68
  type: :runtime
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - '='
72
+ - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: 1.6.8
75
75
  - !ruby/object:Gem::Dependency
@@ -176,9 +176,13 @@ files:
176
176
  - active_shipping.gemspec
177
177
  - dev.yml
178
178
  - gemfiles/activesupport32.gemfile
179
+ - gemfiles/activesupport32_nokogiri_17.gemfile
179
180
  - gemfiles/activesupport40.gemfile
181
+ - gemfiles/activesupport40_nokogiri_17.gemfile
180
182
  - gemfiles/activesupport41.gemfile
183
+ - gemfiles/activesupport41_nokogiri_17.gemfile
181
184
  - gemfiles/activesupport42.gemfile
185
+ - gemfiles/activesupport42_nokogiri_17.gemfile
182
186
  - gemfiles/activesupport50.gemfile
183
187
  - gemfiles/activesupport_master.gemfile
184
188
  - lib/active_shipping.rb