schema_dev 3.9.0 → 3.10.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: c79387ddbaa8c7754beb659002f4bdb828cc0b5e
4
- data.tar.gz: 994c5b59c60e6c169565c5e969ffd471d27dd6c2
3
+ metadata.gz: d7eaaf6a1c187f9007eaf668003cf491a869af09
4
+ data.tar.gz: e1689579c3452c927017571e33bbde71397816fb
5
5
  SHA512:
6
- metadata.gz: f7b51e91d60a4710239b27cd8b20ea7891167afeaab0c34ff4d44de7b547953543884c08ad9f36d5ae019ca0335eec90a14e33d03f5f3989da92d0c0f1dd96e7
7
- data.tar.gz: 92de1fd5074c515836aa4c92dd7d6c7ac58c1c9cb6adf20334c87b518cb0b191d308bfbb8c227b03e0085f3f05d8e39b76cef8a7ebdd6fd95db9708b03782e32
6
+ metadata.gz: c8f9106545956a137e61fe4680a1b793a699669ac4c77d2fc22df6e239a0eb44eefb315099432976da68df066cf34cbced0e910a6b728cdc960c0269b82f4cbb
7
+ data.tar.gz: 85d9a1dde6740946ffdf46d339749409c3eac1344310767d3706b8e359ee531c5edc651b29dfdd862c5b419e27465d05cc475ba379a5a7534d186f071e0f188a
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.10.0** - Add support for 5.1 (i.e. 5.1.\*) and lock down dependencies on *.*
140
141
  * **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)
141
142
  * **3.8.1** - Fixed Gemnasium badge.
142
143
  * **3.8.0** - Add support for AR 5.0.1
@@ -1,3 +1,3 @@
1
1
  module SchemaDev
2
- VERSION = "3.9.0"
2
+ VERSION = "3.10.0"
3
3
  end
@@ -1,3 +1,3 @@
1
1
  eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
2
 
3
- gem "activerecord", "~> 5.0.1"
3
+ gem "activerecord", "5.0.1"
@@ -1,3 +1,3 @@
1
1
  eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
2
 
3
- gem "activerecord", "~> 5.0.2"
3
+ gem "activerecord", "5.0.2"
@@ -1,3 +1,3 @@
1
1
  eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
2
 
3
- gem "activerecord", "~> 5.0.3"
3
+ gem "activerecord", "5.0.3"
@@ -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 "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
@@ -1,3 +1,3 @@
1
1
  eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
2
 
3
- gem "activerecord", "~> 5.1.0"
3
+ gem "activerecord", "5.1.0"
@@ -1,3 +1,3 @@
1
1
  eval File.read File.expand_path('../../Gemfile.base', __FILE__)
2
2
 
3
- gem "activerecord", "~> 5.1.1"
3
+ gem "activerecord", "5.1.1"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schema_dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.9.0
4
+ version: 3.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ronen barzel
@@ -336,6 +336,10 @@ files:
336
336
  - templates/gemfiles/activerecord-5.1.1/Gemfile.mysql2.erb
337
337
  - templates/gemfiles/activerecord-5.1.1/Gemfile.postgresql.erb
338
338
  - templates/gemfiles/activerecord-5.1.1/Gemfile.sqlite3.erb
339
+ - templates/gemfiles/activerecord-5.1/Gemfile.base.erb
340
+ - templates/gemfiles/activerecord-5.1/Gemfile.mysql2.erb
341
+ - templates/gemfiles/activerecord-5.1/Gemfile.postgresql.erb
342
+ - templates/gemfiles/activerecord-5.1/Gemfile.sqlite3.erb
339
343
  - templates/gemfiles/activerecord-edge/Gemfile.base.erb
340
344
  - templates/gemfiles/activerecord-edge/Gemfile.mysql2.erb
341
345
  - templates/gemfiles/activerecord-edge/Gemfile.postgresql.erb