schema_dev 3.10.1 → 3.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/schema_dev/version.rb +1 -1
- data/templates/gem/Gemfile.erb +2 -1
- data/templates/gemfiles/activerecord-5.2/Gemfile.base.erb +3 -0
- data/templates/gemfiles/activerecord-5.2/Gemfile.mysql2.erb +10 -0
- data/templates/gemfiles/activerecord-5.2/Gemfile.postgresql.erb +10 -0
- data/templates/gemfiles/activerecord-5.2/Gemfile.sqlite3.erb +10 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84a5fab10d93fb826fd5fe0d0d304ac3a04b6d7a
|
4
|
+
data.tar.gz: ce1f3ac91e4f582fbadebca63c646000d23fbe07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58fad0d3b2a2056af651f13e6f8cd2853d1c7f3e9df33476345400f365a94db7ef83a407c3755d14644cddbf8e7dbcff739aea497824ee37d9b2bcbdd1044b6c
|
7
|
+
data.tar.gz: 76b2e747f3c7fc900138dc9543bd78098903883bb271e7c12c42fb6cba0d8b8e6f8416f23b8ecaf1469601f9ca256df33a3d950f9739e052207d4871f50133a7
|
data/README.md
CHANGED
@@ -137,6 +137,7 @@ Which defines the rake task `create_databases` and also a task for travis-ci
|
|
137
137
|
|
138
138
|
Release notes for schema_dev versions:
|
139
139
|
|
140
|
+
* **3.11.0** - Add support for AR 5.2
|
140
141
|
* **3.10.1** - Bug fix in rspec db connection; loosen dependency to 5.\*
|
141
142
|
* **3.10.0** - Add support for 5.1 (i.e. 5.1.\*) and lock down dependencies on *.*
|
142
143
|
* **3.9.0** - Add support for AR 5.0.2, 5.0.3, 5.1.0 and 5.1.1. Thanks to [@aliuk2012](https://github.com/aliuk2012)
|
data/lib/schema_dev/version.rb
CHANGED
data/templates/gem/Gemfile.erb
CHANGED
@@ -2,4 +2,5 @@ source "http://rubygems.org"
|
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
|
5
|
+
gemfile_local = File.expand_path '../Gemfile.local', __FILE__
|
6
|
+
eval File.read(gemfile_local), binding, gemfile_local if File.exist? gemfile_local
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: schema_dev
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.11.0
|
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: 2018-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -340,6 +340,10 @@ files:
|
|
340
340
|
- templates/gemfiles/activerecord-5.1/Gemfile.mysql2.erb
|
341
341
|
- templates/gemfiles/activerecord-5.1/Gemfile.postgresql.erb
|
342
342
|
- templates/gemfiles/activerecord-5.1/Gemfile.sqlite3.erb
|
343
|
+
- templates/gemfiles/activerecord-5.2/Gemfile.base.erb
|
344
|
+
- templates/gemfiles/activerecord-5.2/Gemfile.mysql2.erb
|
345
|
+
- templates/gemfiles/activerecord-5.2/Gemfile.postgresql.erb
|
346
|
+
- templates/gemfiles/activerecord-5.2/Gemfile.sqlite3.erb
|
343
347
|
- templates/gemfiles/activerecord-edge/Gemfile.base.erb
|
344
348
|
- templates/gemfiles/activerecord-edge/Gemfile.mysql2.erb
|
345
349
|
- templates/gemfiles/activerecord-edge/Gemfile.postgresql.erb
|