schema_dev 3.10.1 → 3.11.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: 25f414eba47f2915597f0ea3f6915cd54a304da7
4
- data.tar.gz: e252da9fae6aa0aeb165e72093019b0392de0af6
3
+ metadata.gz: 84a5fab10d93fb826fd5fe0d0d304ac3a04b6d7a
4
+ data.tar.gz: ce1f3ac91e4f582fbadebca63c646000d23fbe07
5
5
  SHA512:
6
- metadata.gz: 5dbea1c432d05b4cd204ef827e2acfc5891bcea5d70bf5597c6ce89fe9d6d636b484e7cecc2dbc3fb7aa4b489a1d3ce8f9830d474f2fe2c28db51213fad44ed9
7
- data.tar.gz: fa18474b38b0048c9be339862f352a2e34b80e25ae360e7cd648f6a8df5d4c020fa367c37357168afded27ce759eac432319b219b430fca04067b91adc96e6f4
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)
@@ -1,3 +1,3 @@
1
1
  module SchemaDev
2
- VERSION = "3.10.1"
2
+ VERSION = "3.11.0"
3
3
  end
@@ -2,4 +2,5 @@ source "http://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- File.exist?(gemfile_local = File.expand_path('../Gemfile.local', __FILE__)) and eval File.read(gemfile_local), binding, gemfile_local
5
+ gemfile_local = File.expand_path '../Gemfile.local', __FILE__
6
+ eval File.read(gemfile_local), binding, gemfile_local if File.exist? gemfile_local
@@ -0,0 +1,3 @@
1
+ eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
+
3
+ gem "activerecord", ">= 5.2.0.beta0", "< 5.3"
@@ -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.10.1
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: 2017-06-15 00:00:00.000000000 Z
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