schema_dev 3.6.2 → 3.7.0
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/README.md +2 -0
- data/lib/schema_dev/version.rb +1 -1
- data/templates/gemfiles/activerecord-5.0/Gemfile.base.erb +3 -0
- data/templates/gemfiles/activerecord-5.0/Gemfile.mysql2.erb +10 -0
- data/templates/gemfiles/activerecord-5.0/Gemfile.postgresql.erb +10 -0
- data/templates/gemfiles/activerecord-5.0/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: bae5f9e025a3922cdb3037af56cd0d5ef4035eae
|
|
4
|
+
data.tar.gz: 9947968fdc1e212bbc0252115e1036fe8e1e3958
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d79a7b0e161fd07f04f570a539a9d60c4258cdac647eb8888eef6e7253381e1d20038a93c3d301e20f8d4fc95c99b51c6390b5552f67254f5b354f497d422b14
|
|
7
|
+
data.tar.gz: 1c58062a6a88d42a0023b0f3b0639aa50159bbb165614a15d5998bae77fad221f25dda88b819289b0eb41ac04bb4bcb04f58424aa22bb045f81f1085a55d9408
|
data/README.md
CHANGED
|
@@ -28,6 +28,7 @@ The client gem needs a file `schema_dev.yml` in its root, which specifies the te
|
|
|
28
28
|
* `activerecord`: A single version of ActiveRecord, or a list of ActiveRecord versions
|
|
29
29
|
* `db`: A single db adapter, or a list of db adapters.
|
|
30
30
|
* `quick`: (Optional) Hash listing the version of ruby, activerecord, and db to use with `--quick` option. If not specified, the default is to use the last entry in each list.
|
|
31
|
+
* `exclude`: (Optional) An array of hashes listing parts of the matrix to exclude. Each hash in the array may leave off `ruby`, `activerecord` and/or `db` to exclude the slice along the missing dimension
|
|
31
32
|
|
|
32
33
|
If you change this file, it's a good idea to run `schema_dev freshen`
|
|
33
34
|
|
|
@@ -135,6 +136,7 @@ Which defines the rake task `create_databases` and also a task for travis-ci
|
|
|
135
136
|
|
|
136
137
|
Release notes for schema_dev versions:
|
|
137
138
|
|
|
139
|
+
* **3.7.0** - Add suport for AR 5.0.0
|
|
138
140
|
* **3.6.2** - Fix README template error introduced in 3.6.0
|
|
139
141
|
* **3.6.1** - Further fix mysql2 dependencies.
|
|
140
142
|
* **3.6.0** - Add support for AR 4.2.6; fix mysql2 dependencies; internal improvements and bug fixes. Thanks to [@dmeranda](https://github.com/SchemaPlus/schema_dev/issues?q=is%3Apr+is%3Aopen+author%3Admeranda) and [@dholdren](https://github.com/SchemaPlus/schema_dev/issues?q=is%3Apr+is%3Aopen+author%3Adholdren)
|
data/lib/schema_dev/version.rb
CHANGED
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.7.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: 2016-
|
|
11
|
+
date: 2016-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -308,6 +308,10 @@ files:
|
|
|
308
308
|
- templates/gemfiles/activerecord-4.2/Gemfile.mysql2.erb
|
|
309
309
|
- templates/gemfiles/activerecord-4.2/Gemfile.postgresql.erb
|
|
310
310
|
- templates/gemfiles/activerecord-4.2/Gemfile.sqlite3.erb
|
|
311
|
+
- templates/gemfiles/activerecord-5.0/Gemfile.base.erb
|
|
312
|
+
- templates/gemfiles/activerecord-5.0/Gemfile.mysql2.erb
|
|
313
|
+
- templates/gemfiles/activerecord-5.0/Gemfile.postgresql.erb
|
|
314
|
+
- templates/gemfiles/activerecord-5.0/Gemfile.sqlite3.erb
|
|
311
315
|
- templates/gemfiles/activerecord-edge/Gemfile.base.erb
|
|
312
316
|
- templates/gemfiles/activerecord-edge/Gemfile.mysql2.erb
|
|
313
317
|
- templates/gemfiles/activerecord-edge/Gemfile.postgresql.erb
|