schema_plus_enums 0.1.7 → 0.1.8

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
- SHA1:
3
- metadata.gz: 0bfe3b755082487714c749fe09b61cfb1d6fe3cb
4
- data.tar.gz: c71b104eaaf92d2e99d470fd3eac2e3bd7d4a7d9
2
+ SHA256:
3
+ metadata.gz: 58837ff52a7707b036411a1e39978df95c16d2342249cf1edd325859f0fc361a
4
+ data.tar.gz: a3193a3d5ece92b4731adc29a93b102431e6bcffb8ad845c59cd1822422809e2
5
5
  SHA512:
6
- metadata.gz: a70accc0a7f050316f7aa84056de6e88e7eecb4c7da462f83d44ed9db7c7bbf5b4908b9067c7ffcd69a2df8585ffbd61de46d66ba9506e36bb968062702aeeb0
7
- data.tar.gz: 90efc0d714bebc4e7b46d11935e93cd9fa6bd0fa6419421cad982193278bca091c84630baec3474b2e47edd93ab64c52df29292a91942300ecd688a265bbcedf
6
+ metadata.gz: 7e06d1e595c6664d4b12e5d9cb83944af47fb85af0c32ed11c1be7d1693834fe0d32b781713808a0bf4eb94a6761bfb04513c965e212088c185ae9c16975b7c3
7
+ data.tar.gz: 957d46fe126b28d234eaeee3a47830c64eea44f3a2e46de80a7d178355a35d5ca05ec9417577274b79ad43a9e6def6f0fa8b0998e0d283e9561841700f57b456
@@ -12,6 +12,7 @@ gemfile:
12
12
  - gemfiles/activerecord-4.2/Gemfile.postgresql
13
13
  - gemfiles/activerecord-5.0/Gemfile.postgresql
14
14
  - gemfiles/activerecord-5.1/Gemfile.postgresql
15
+ - gemfiles/activerecord-5.2/Gemfile.postgresql
15
16
  env: POSTGRESQL_DB_USER=postgres
16
17
  addons:
17
18
  postgresql: '9.4'
data/README.md CHANGED
@@ -31,12 +31,15 @@ SchemaPlus::Enums is tested on:
31
31
  * ruby **2.2.7** with activerecord **4.2**, using **postgresql**
32
32
  * ruby **2.2.7** with activerecord **5.0**, using **postgresql**
33
33
  * ruby **2.2.7** with activerecord **5.1**, using **postgresql**
34
+ * ruby **2.2.7** with activerecord **5.2**, using **postgresql**
34
35
  * ruby **2.3.4** with activerecord **4.2**, using **postgresql**
35
36
  * ruby **2.3.4** with activerecord **5.0**, using **postgresql**
36
37
  * ruby **2.3.4** with activerecord **5.1**, using **postgresql**
38
+ * ruby **2.3.4** with activerecord **5.2**, using **postgresql**
37
39
  * ruby **2.4.1** with activerecord **4.2**, using **postgresql**
38
40
  * ruby **2.4.1** with activerecord **5.0**, using **postgresql**
39
41
  * ruby **2.4.1** with activerecord **5.1**, using **postgresql**
42
+ * ruby **2.4.1** with activerecord **5.2**, using **postgresql**
40
43
 
41
44
  <!-- SCHEMA_DEV: MATRIX - end -->
42
45
 
@@ -68,6 +71,7 @@ drop_enum :color, schema: 'cmyk'
68
71
 
69
72
  ## Release Notes
70
73
 
74
+ * 0.1.8 - Update dependencies to include AR 5.2.
71
75
  * 0.1.7 - Update dependencies to include AR 5.1.* Thanks to [@patleb](https://github.com/patleb)
72
76
  * 0.1.6 - Update dependencies to include AR 5.1. Thanks to [@willsoto](https://github.com/willsoto)
73
77
  * 0.1.5 - Update dependencies to include AR 5.0. Thanks to [@jimcavoli](https://github.com/jimcavoli)
@@ -2,9 +2,9 @@ require "pathname"
2
2
  eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
3
 
4
4
  platform :ruby do
5
- gem "pg"
5
+ gem "pg", "< 1"
6
6
  end
7
7
 
8
8
  platform :jruby do
9
9
  gem 'activerecord-jdbcpostgresql-adapter'
10
- end
10
+ end
@@ -2,9 +2,9 @@ require "pathname"
2
2
  eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
3
 
4
4
  platform :ruby do
5
- gem "pg"
5
+ gem "pg", "< 1"
6
6
  end
7
7
 
8
8
  platform :jruby do
9
9
  gem 'activerecord-jdbcpostgresql-adapter'
10
- end
10
+ end
@@ -2,9 +2,9 @@ require "pathname"
2
2
  eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
3
 
4
4
  platform :ruby do
5
- gem "pg"
5
+ gem "pg", "< 1"
6
6
  end
7
7
 
8
8
  platform :jruby do
9
9
  gem 'activerecord-jdbcpostgresql-adapter'
10
- end
10
+ end
@@ -0,0 +1,3 @@
1
+ eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
+
3
+ gem "activerecord", ">= 5.2.0.beta0", "< 5.3"
@@ -0,0 +1,10 @@
1
+ require "pathname"
2
+ eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
+
4
+ platform :ruby do
5
+ gem "pg"
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcpostgresql-adapter'
10
+ end
@@ -1,5 +1,5 @@
1
1
  module SchemaPlus
2
2
  module Enums
3
- VERSION = "0.1.7"
3
+ VERSION = "0.1.8"
4
4
  end
5
5
  end
@@ -6,5 +6,6 @@ activerecord:
6
6
  - 4.2
7
7
  - 5.0
8
8
  - 5.1
9
+ - 5.2
9
10
  db:
10
11
  - postgresql
@@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
18
18
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
19
  gem.require_paths = ["lib"]
20
20
 
21
- gem.add_dependency "activerecord", ">= 4.2", "< 5.2"
21
+ gem.add_dependency "activerecord", ">= 4.2", "< 5.3"
22
22
  gem.add_dependency "schema_plus_core"
23
23
  gem.add_dependency "its-it", "~> 1.2"
24
24
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schema_plus_enums
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - ronen barzel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-07 00:00:00.000000000 Z
11
+ date: 2018-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '4.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '5.2'
22
+ version: '5.3'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '4.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '5.2'
32
+ version: '5.3'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: schema_plus_core
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -162,6 +162,8 @@ files:
162
162
  - gemfiles/activerecord-5.0/Gemfile.postgresql
163
163
  - gemfiles/activerecord-5.1/Gemfile.base
164
164
  - gemfiles/activerecord-5.1/Gemfile.postgresql
165
+ - gemfiles/activerecord-5.2/Gemfile.base
166
+ - gemfiles/activerecord-5.2/Gemfile.postgresql
165
167
  - lib/schema_plus/enums.rb
166
168
  - lib/schema_plus/enums/active_record.rb
167
169
  - lib/schema_plus/enums/middleware.rb
@@ -192,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
192
194
  version: '0'
193
195
  requirements: []
194
196
  rubyforge_project:
195
- rubygems_version: 2.5.1
197
+ rubygems_version: 2.7.8
196
198
  signing_key:
197
199
  specification_version: 4
198
200
  summary: Adds support for enum data types in ActiveRecord