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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f8a67b0716701fd34e006480b1a918a92ca9981
4
- data.tar.gz: 0b0f0385952d9b06234caaafba5422766e8042fd
3
+ metadata.gz: bae5f9e025a3922cdb3037af56cd0d5ef4035eae
4
+ data.tar.gz: 9947968fdc1e212bbc0252115e1036fe8e1e3958
5
5
  SHA512:
6
- metadata.gz: 25dfe2511daa10de860dff1a7ef5cb716b45eaaf37d36baa264b4ddc787761dac90a9cd79b60bcc9e306562e267eec312280fe941be4ef886e61e0f2efd91202
7
- data.tar.gz: 5cea6d625b5874d09519793f8ad37005495002f8cba0f03d81cc52a9cbfa2ab51ffe4699f55ac4cb89dbd89f70ed4c17fff50d849b39567491ae8de94e110b79
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)
@@ -1,3 +1,3 @@
1
1
  module SchemaDev
2
- VERSION = "3.6.2"
2
+ VERSION = "3.7.0"
3
3
  end
@@ -0,0 +1,3 @@
1
+ eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
+
3
+ gem "activerecord", ">= 5.0.0.beta1", "< 5.1"
@@ -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 "mysql2"
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcmysql-adapter'
10
+ end
@@ -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
@@ -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 "sqlite3"
6
+ end
7
+
8
+ platform :jruby do
9
+ gem 'activerecord-jdbcsqlite3-adapter', '>=1.3.0.beta2'
10
+ end
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.6.2
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-03-14 00:00:00.000000000 Z
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