schema_plus 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6baf672aae665ce18e90211330b7a8a85413e19c
4
- data.tar.gz: fe37aa4396dc65ce843ef0cb3b43c33abcc3dd21
3
+ metadata.gz: f07321d1b059cfc84b5ea67c6c243ee66ecbab45
4
+ data.tar.gz: e48733646d1b9fad475691bf183e37c63cf20fe0
5
5
  SHA512:
6
- metadata.gz: 98d96007fe6a44b042762015eb90767c2378357fe22521df84884d74792fc026425e99fb5f0e745f54a4b3bf9ee8aaaff505dd22ee76f4bc3f9d1e208630f62f
7
- data.tar.gz: 8071c349aebb2df8c6f91ddbad29c813c74d4c7e6723f9c3559d9d59c2ccb15644d5698b35e1abeb06594912149b9e77e0dfc29b864be7a30911b871eaf70ebc
6
+ metadata.gz: 346ec2e1b1e19a42379691428d0ed09b1eb91fd26fdccfcc1db4111ac2e4b297360e9eeb4b7ecd339f0d2ae9fbe2f9b7a1d607b21205bac6f3d764fecf32aab1
7
+ data.tar.gz: 0906727d820fc30587a260857829764df1a5c1adbff1fb74b840a9a62885676ced6f5853001f1f77fa6878dfcd95840504205a341473d4a320fce3a661c718e7
@@ -2,6 +2,15 @@
2
2
 
3
3
  ## Change Log
4
4
 
5
+ ## 2.0.1
6
+
7
+ * Upgrade schema_dev_core dependency to 1.0
8
+
9
+ ## 2.0.0
10
+
11
+ * Break up monolothic gem into a family of individual gems. This gem is
12
+ now just a wrapper.
13
+
5
14
  ## 1.8.1
6
15
 
7
16
  * Bug fix for AR 4.2, spurious add_foreign_key statements at the top of schema dump. Thanks to [@tovodeverett](https://github.com/tovodeverett) for doing better testing than me!
data/README.md CHANGED
@@ -27,7 +27,8 @@ The SchemaPlus family of gems provide various extensions and enhancements to Act
27
27
  [schema_plus_enums](https://github.com/SchemaPlus/schema_plus_enums) | Define enum types in migrations
28
28
  [schema_plus_foreign_keys](https://github.com/SchemaPlus/schema_plus_foreign_keys) | Extended support for foreign keys, including creation as column options, `:deferrable`, and SQLite3 support
29
29
  [schema_plus_indexes](https://github.com/SchemaPlus/schema_plus_indexes) | Convenience and consistency in using indexes
30
- [schema_plus_pg_indexes](https://github.com/SchemaPlus/schema_plus_pg_indexes) |PostgreSQL index features: `case_insenstive`, `expression` and `operator_class`
30
+ [schema_plus_multischema](https://github.com/SchemaPlus/schema_plus_multischema) | Support for using multiple PostgreSQL schemas in a single database
31
+ [schema_plus_pg_indexes](https://github.com/SchemaPlus/schema_plus_pg_indexes) |PostgreSQL index features: `case_insensitive`, `expression` and `operator_class`
31
32
  [schema_plus_tables](https://github.com/SchemaPlus/schema_plus_tables) | Convenience and consistency in using tables
32
33
  [schema_plus_views](https://github.com/SchemaPlus/schema_plus_views) | Create and drop views in migrations
33
34
 
@@ -2,9 +2,9 @@ require "pathname"
2
2
  eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
3
 
4
4
  platform :ruby do
5
- gem "mysql2"
5
+ gem 'mysql2', '~> 0.3.13'
6
6
  end
7
7
 
8
8
  platform :jruby do
9
9
  gem 'activerecord-jdbcmysql-adapter'
10
- end
10
+ end
@@ -2,9 +2,9 @@ require "pathname"
2
2
  eval(Pathname.new(__FILE__).dirname.join("Gemfile.base").read, binding)
3
3
 
4
4
  platform :ruby do
5
- gem "mysql2"
5
+ gem 'mysql2', '~> 0.3.13'
6
6
  end
7
7
 
8
8
  platform :jruby do
9
9
  gem 'activerecord-jdbcmysql-adapter'
10
- end
10
+ end
@@ -1,3 +1,3 @@
1
1
  module SchemaPlus
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
@@ -23,7 +23,7 @@ Gem::Specification.new do |gem|
23
23
 
24
24
  gem.add_dependency "activerecord", "~> 4.2"
25
25
  gem.add_dependency "schema_auto_foreign_keys", "~> 0.1"
26
- gem.add_dependency "schema_plus_core", "~> 0.4"
26
+ gem.add_dependency "schema_plus_core", "~> 1.0"
27
27
  gem.add_dependency "schema_monkey", "~> 2.1"
28
28
  gem.add_dependency "schema_plus_columns", "~> 0.1"
29
29
  gem.add_dependency "schema_plus_enums", "~> 0.1"
@@ -35,7 +35,7 @@ Gem::Specification.new do |gem|
35
35
  gem.add_dependency "schema_plus_tables", "~> 0.1"
36
36
  gem.add_dependency "schema_plus_views", "~> 0.1"
37
37
 
38
- gem.add_development_dependency "schema_dev", "~> 3.4"
38
+ gem.add_development_dependency "schema_dev", "~> 3.6"
39
39
  gem.add_development_dependency "rake"
40
40
  gem.add_development_dependency "rspec", "~> 3.0"
41
41
  gem.add_development_dependency "rdoc"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schema_plus
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ronen Barzel
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-05-22 00:00:00.000000000 Z
12
+ date: 2016-03-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord
@@ -45,14 +45,14 @@ dependencies:
45
45
  requirements:
46
46
  - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: '0.4'
48
+ version: '1.0'
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
53
  - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: '0.4'
55
+ version: '1.0'
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: schema_monkey
58
58
  requirement: !ruby/object:Gem::Requirement
@@ -211,14 +211,14 @@ dependencies:
211
211
  requirements:
212
212
  - - "~>"
213
213
  - !ruby/object:Gem::Version
214
- version: '3.4'
214
+ version: '3.6'
215
215
  type: :development
216
216
  prerelease: false
217
217
  version_requirements: !ruby/object:Gem::Requirement
218
218
  requirements:
219
219
  - - "~>"
220
220
  - !ruby/object:Gem::Version
221
- version: '3.4'
221
+ version: '3.6'
222
222
  - !ruby/object:Gem::Dependency
223
223
  name: rake
224
224
  requirement: !ruby/object:Gem::Requirement