schema_plus_enums 0.1.5 → 0.1.6
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 +4 -2
- data/README.md +11 -6
- data/gemfiles/activerecord-5.0/Gemfile.base +1 -1
- data/gemfiles/activerecord-5.1/Gemfile.base +3 -0
- data/gemfiles/activerecord-5.1/Gemfile.postgresql +10 -0
- data/lib/schema_plus/enums/version.rb +1 -1
- data/schema_dev.yml +4 -2
- data/schema_plus_enums.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd11d0322676a64fa09f2b8881875344a02d532a
|
|
4
|
+
data.tar.gz: 262c45049b99c8b278596a5b0e7c8439509ec30f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 798976d5081fdd0d7dda6868193aa41c774a6b841c0d5d680ab3ab02ae6adde1cad8f7dac204f61af7d7687db3416de88384ca8b1004b44d304d2f4f19f65b63
|
|
7
|
+
data.tar.gz: 0859ef09701135b4bbc71a2d4e8bfbcd0be6915df10f21594280b0b579254be89d71ae9723166969c716bff7ec06bf3a178ffba2d88081019c3c6ca815b86700
|
data/.travis.yml
CHANGED
|
@@ -5,11 +5,13 @@
|
|
|
5
5
|
---
|
|
6
6
|
sudo: false
|
|
7
7
|
rvm:
|
|
8
|
-
- 2.2.
|
|
9
|
-
- 2.3.
|
|
8
|
+
- 2.2.7
|
|
9
|
+
- 2.3.4
|
|
10
|
+
- 2.4.1
|
|
10
11
|
gemfile:
|
|
11
12
|
- gemfiles/activerecord-4.2/Gemfile.postgresql
|
|
12
13
|
- gemfiles/activerecord-5.0/Gemfile.postgresql
|
|
14
|
+
- gemfiles/activerecord-5.1/Gemfile.postgresql
|
|
13
15
|
env: POSTGRESQL_DB_USER=postgres
|
|
14
16
|
addons:
|
|
15
17
|
postgresql: '9.4'
|
data/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
[](http://badge.fury.io/rb/schema_plus_enums)
|
|
2
2
|
[](http://travis-ci.org/SchemaPlus/schema_plus_enums)
|
|
3
3
|
[](https://coveralls.io/r/SchemaPlus/schema_plus_enums)
|
|
4
|
-
[](https://gemnasium.com/SchemaPlus/schema_plus_enums)
|
|
5
4
|
|
|
6
5
|
# SchemaPlus::Enums
|
|
7
6
|
|
|
@@ -29,10 +28,15 @@ SchemaPlus::Enums is tested on:
|
|
|
29
28
|
|
|
30
29
|
<!-- SCHEMA_DEV: MATRIX - begin -->
|
|
31
30
|
<!-- These lines are auto-generated by schema_dev based on schema_dev.yml -->
|
|
32
|
-
* ruby **2.2.
|
|
33
|
-
* ruby **2.2.
|
|
34
|
-
* ruby **2.
|
|
35
|
-
* ruby **2.3.
|
|
31
|
+
* ruby **2.2.7** with activerecord **4.2**, using **postgresql**
|
|
32
|
+
* ruby **2.2.7** with activerecord **5.0**, using **postgresql**
|
|
33
|
+
* ruby **2.2.7** with activerecord **5.1**, using **postgresql**
|
|
34
|
+
* ruby **2.3.4** with activerecord **4.2**, using **postgresql**
|
|
35
|
+
* ruby **2.3.4** with activerecord **5.0**, using **postgresql**
|
|
36
|
+
* ruby **2.3.4** with activerecord **5.1**, using **postgresql**
|
|
37
|
+
* ruby **2.4.1** with activerecord **4.2**, using **postgresql**
|
|
38
|
+
* ruby **2.4.1** with activerecord **5.0**, using **postgresql**
|
|
39
|
+
* ruby **2.4.1** with activerecord **5.1**, using **postgresql**
|
|
36
40
|
|
|
37
41
|
<!-- SCHEMA_DEV: MATRIX - end -->
|
|
38
42
|
|
|
@@ -62,8 +66,9 @@ drop_enum :color
|
|
|
62
66
|
drop_enum :color, schema: 'cmyk'
|
|
63
67
|
```
|
|
64
68
|
|
|
65
|
-
##
|
|
69
|
+
## Release Notes
|
|
66
70
|
|
|
71
|
+
* 0.1.6 - Update dependencies to include AR 5.1. Thanks to [@willsoto](https://github.com/willsoto)
|
|
67
72
|
* 0.1.5 - Update dependencies to include AR 5.0. Thanks to [@jimcavoli](https://github.com/jimcavoli)
|
|
68
73
|
* 0.1.4 - Missing require
|
|
69
74
|
* 0.1.3 - Explicit gem dependencies
|
data/schema_dev.yml
CHANGED
data/schema_plus_enums.gemspec
CHANGED
|
@@ -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", "
|
|
21
|
+
gem.add_dependency "activerecord", ">= 4.2", "<= 5.1"
|
|
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.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ronen barzel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -17,7 +17,7 @@ dependencies:
|
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '4.2'
|
|
20
|
-
- - "
|
|
20
|
+
- - "<="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: '5.1'
|
|
23
23
|
type: :runtime
|
|
@@ -27,7 +27,7 @@ dependencies:
|
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '4.2'
|
|
30
|
-
- - "
|
|
30
|
+
- - "<="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '5.1'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
@@ -160,6 +160,8 @@ files:
|
|
|
160
160
|
- gemfiles/activerecord-4.2/Gemfile.postgresql
|
|
161
161
|
- gemfiles/activerecord-5.0/Gemfile.base
|
|
162
162
|
- gemfiles/activerecord-5.0/Gemfile.postgresql
|
|
163
|
+
- gemfiles/activerecord-5.1/Gemfile.base
|
|
164
|
+
- gemfiles/activerecord-5.1/Gemfile.postgresql
|
|
163
165
|
- lib/schema_plus/enums.rb
|
|
164
166
|
- lib/schema_plus/enums/active_record.rb
|
|
165
167
|
- lib/schema_plus/enums/middleware.rb
|