active_utils 3.3.14 → 3.3.15

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
  SHA256:
3
- metadata.gz: a9d19a82bfba2a27124b8a69c89b7e908e2b53a95d505e02b0aee4571fd82fd9
4
- data.tar.gz: 9b554a207403c52f17151d0ee4ad6395d839aa8fcaa436247a476aabd8d61c27
3
+ metadata.gz: f0321a70bbd7569051040354e0a162b770489c01294624a2f1b85d36ea3f7807
4
+ data.tar.gz: 820c4e0a69ea0c1fb4d216358abda5e5d519974da0d3b7e8de03ffe0d2d3fe6f
5
5
  SHA512:
6
- metadata.gz: 78424cc9ce62e9785a61f6f30c2b50eabfff6d09fde5fe7873e2bfdc81352b65db3d013312d47c5bf2788daf476ed2d3d8d9319212cb05a99cb5d72fbc5805a1
7
- data.tar.gz: a6966f9d461f527decf6e65ab830270b8f63076c941c70aa45d1d0b42510c497a8602cabf98ec83c2e3e8b12f4be9499e5ec9e986645de4c1b902194f5e8926a
6
+ metadata.gz: 6bc8a51f48cd52ee7b9a4b5ac4c93908510caed120830f52a368c77d6178e2d2180d998beee6585767f53649dad4446a7a6798fb71f29b2045546f2708bc35f3
7
+ data.tar.gz: f558eb29505f4b5c69a56e25d048c33d94cf310c2b6ee0a9f5802c3d988258cbbe52d03f1ff823d434788a3adb886c0a72d4070546a065a92463637511f634d2
@@ -3,33 +3,37 @@ script: bundle exec rake test
3
3
  sudo: false
4
4
 
5
5
  rvm:
6
- - "1.9"
7
6
  - "2.0"
8
7
  - "2.1"
9
- - "2.2.2"
8
+ - "2.2"
9
+ - "2.3"
10
+ - "2.4"
11
+ - "2.5"
10
12
 
11
13
  before_install:
12
14
  - gem update bundler
13
15
 
14
16
  gemfile:
15
- - gemfiles/Gemfile.activesupport32
16
- - gemfiles/Gemfile.activesupport40
17
- - gemfiles/Gemfile.activesupport41
18
17
  - gemfiles/Gemfile.activesupport42
19
18
  - gemfiles/Gemfile.activesupport50
20
19
  - gemfiles/Gemfile.activesupport52
20
+ - gemfiles/Gemfile.activesupport-master
21
21
 
22
22
  matrix:
23
23
  exclude:
24
- - rvm: "1.9"
25
- gemfile: gemfiles/Gemfile.activesupport50
26
- - rvm: "1.9"
27
- gemfile: gemfiles/Gemfile.activesupport52
28
24
  - rvm: "2.0"
29
25
  gemfile: gemfiles/Gemfile.activesupport50
30
26
  - rvm: "2.0"
31
27
  gemfile: gemfiles/Gemfile.activesupport52
28
+ - rvm: "2.0"
29
+ gemfile: gemfiles/Gemfile.activesupport-master
32
30
  - rvm: "2.1"
33
31
  gemfile: gemfiles/Gemfile.activesupport50
34
32
  - rvm: "2.1"
35
33
  gemfile: gemfiles/Gemfile.activesupport52
34
+ - rvm: "2.1"
35
+ gemfile: gemfiles/Gemfile.activesupport-master
36
+ - rvm: "2.2"
37
+ gemfile: gemfiles/Gemfile.activesupport-master
38
+ - rvm: "2.3"
39
+ gemfile: gemfiles/Gemfile.activesupport-master
@@ -1,5 +1,9 @@
1
1
  # ActiveUtils changelog
2
2
 
3
+ ### Version 3.3.15 (November 29, 2018)
4
+ - Remove support to Ruby 1.9 and ActiveSupport `< 4`
5
+ - Remove the upperbound constraint on ActiveSupport
6
+
3
7
  ### Version 3.3.14 (November 28, 2018)
4
8
  - Add `MW` to `ActiveUtils::Country::COUNTRIES_THAT_DO_NOT_USE_POSTALCODES`
5
9
 
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
 
15
15
  s.rubyforge_project = "active_utils"
16
16
 
17
- s.add_dependency('activesupport', '>= 3.2', '< 6.0')
17
+ s.add_dependency('activesupport', '>= 4.2')
18
18
  s.add_dependency('i18n')
19
19
 
20
20
  s.add_development_dependency('rake')
@@ -1,4 +1,4 @@
1
1
  source "https://rubygems.org"
2
2
  gemspec path: '..'
3
3
 
4
- gem 'activesupport', '~> 3.2.0'
4
+ gem 'activesupport', github: 'rails/rails'
@@ -1,3 +1,3 @@
1
1
  module ActiveUtils
2
- VERSION = "3.3.14"
2
+ VERSION = "3.3.15"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.14
4
+ version: 3.3.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-28 00:00:00.000000000 Z
11
+ date: 2018-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,20 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '3.2'
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '6.0'
19
+ version: '4.2'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - ">="
28
25
  - !ruby/object:Gem::Version
29
- version: '3.2'
30
- - - "<"
31
- - !ruby/object:Gem::Version
32
- version: '6.0'
26
+ version: '4.2'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: i18n
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -103,9 +97,7 @@ files:
103
97
  - README.md
104
98
  - Rakefile
105
99
  - active_utils.gemspec
106
- - gemfiles/Gemfile.activesupport32
107
- - gemfiles/Gemfile.activesupport40
108
- - gemfiles/Gemfile.activesupport41
100
+ - gemfiles/Gemfile.activesupport-master
109
101
  - gemfiles/Gemfile.activesupport42
110
102
  - gemfiles/Gemfile.activesupport50
111
103
  - gemfiles/Gemfile.activesupport52
@@ -1,4 +0,0 @@
1
- source "https://rubygems.org"
2
- gemspec path: '..'
3
-
4
- gem 'activesupport', '~> 4.0.0'
@@ -1,4 +0,0 @@
1
- source "https://rubygems.org"
2
- gemspec path: '..'
3
-
4
- gem 'activesupport', '~> 4.1.0'