schema_plus_enums 0.1.5 → 0.1.6

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: 398a9dc62bb516ea3453121de30a96c0140cb2a9
4
- data.tar.gz: 2508c8999e02b278a1e5875c7e40d96bcb957d16
3
+ metadata.gz: fd11d0322676a64fa09f2b8881875344a02d532a
4
+ data.tar.gz: 262c45049b99c8b278596a5b0e7c8439509ec30f
5
5
  SHA512:
6
- metadata.gz: 6985cef2ba038f80a8a649c771ade02cf6077d614f8eca7ad9901b7c517a2069c85d39d5e9bc74356ae17af7efcc4bb95daadb8143ffe19b6f5cb93a870d52f3
7
- data.tar.gz: f973dd9742c0455f8037f5a5db9e06b761f90bf9bf0c8e88e95044bd3b3425c8c421790ea05b443806bbe165a0a164d8aff5b1f89661c65bb7784d182be1ab80
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.5
9
- - 2.3.1
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
  [![Gem Version](https://badge.fury.io/rb/schema_plus_enums.svg)](http://badge.fury.io/rb/schema_plus_enums)
2
2
  [![Build Status](https://secure.travis-ci.org/SchemaPlus/schema_plus_enums.svg)](http://travis-ci.org/SchemaPlus/schema_plus_enums)
3
3
  [![Coverage Status](https://img.shields.io/coveralls/SchemaPlus/schema_plus_enums.svg)](https://coveralls.io/r/SchemaPlus/schema_plus_enums)
4
- [![Dependency Status](https://gemnasium.com/lomba/schema_plus_enums.svg)](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.5** with activerecord **4.2**, using **postgresql**
33
- * ruby **2.2.5** with activerecord **5.0**, using **postgresql**
34
- * ruby **2.3.1** with activerecord **4.2**, using **postgresql**
35
- * ruby **2.3.1** with activerecord **5.0**, using **postgresql**
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
- ## History
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
@@ -1,3 +1,3 @@
1
1
  eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
2
 
3
- gem "activerecord", "~> 5.0.0"
3
+ gem "activerecord", "~> 5.0.1"
@@ -0,0 +1,3 @@
1
+ eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
+
3
+ gem "activerecord", "~> 5.1.0"
@@ -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.5"
3
+ VERSION = "0.1.6"
4
4
  end
5
5
  end
data/schema_dev.yml CHANGED
@@ -1,8 +1,10 @@
1
1
  ruby:
2
- - 2.2.5
3
- - 2.3.1
2
+ - 2.2.7
3
+ - 2.3.4
4
+ - 2.4.1
4
5
  activerecord:
5
6
  - 4.2
6
7
  - 5.0
8
+ - 5.1
7
9
  db:
8
10
  - 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.1"
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.5
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: 2016-10-16 00:00:00.000000000 Z
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