schema_plus 1.1.0 → 1.1.1
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.
- data/README.md +8 -5
- data/gemfiles/rails-3.2/Gemfile.base +1 -1
- data/lib/schema_plus/version.rb +1 -1
- data/schema_plus.gemspec +1 -1
- metadata +10 -6
data/README.md
CHANGED
|
@@ -9,15 +9,12 @@ For added rails DRYness see also the gems
|
|
|
9
9
|
[schema_associations](http://rubygems.org/gems/schema_associations) and
|
|
10
10
|
[schema_validations](http://rubygems.org/gems/schema_validations)
|
|
11
11
|
|
|
12
|
-
[<img
|
|
13
|
-
src="https://secure.travis-ci.org/lomba/schema_plus.png"/>](http://travis-ci.o
|
|
14
|
-
rg/lomba/schema_plus) [<img src="https://gemnasium.com/lomba/schema_plus.png"
|
|
15
|
-
alt="Dependency Status" />](https://gemnasium.com/lomba/schema_plus)
|
|
12
|
+
[<img src="https://secure.travis-ci.org/lomba/schema_plus.png"/>](http://travis-ci.org/lomba/schema_plus)[<img src="https://gemnasium.com/lomba/schema_plus.png" alt="Dependency Status" />](https://gemnasium.com/lomba/schema_plus)
|
|
16
13
|
|
|
17
14
|
## Compatibility
|
|
18
15
|
|
|
19
16
|
SchemaPlus supports all combinations of:
|
|
20
|
-
* rails 3.2
|
|
17
|
+
* rails 3.2 (up through 3.2.12)
|
|
21
18
|
* PostgreSQL, MySQL (using mysql or mysql2 gem), or SQLite3 (using sqlite3
|
|
22
19
|
3.7.7 which has foreign key support)
|
|
23
20
|
* MRI ruby 1.9.2 or 1.9.3
|
|
@@ -280,6 +277,11 @@ of foreign key constraints, you can re-enable it:
|
|
|
280
277
|
|
|
281
278
|
## Release notes:
|
|
282
279
|
|
|
280
|
+
### 1.1.1
|
|
281
|
+
|
|
282
|
+
* Dependency constraint to rails 3.2.12 max, since schema_plus doesn't
|
|
283
|
+
currently work with 3.2.13.rc2
|
|
284
|
+
|
|
283
285
|
### 1.1.0
|
|
284
286
|
|
|
285
287
|
* Add support for drop_table :cascade => true. Note that until now,
|
|
@@ -287,6 +289,7 @@ of foreign key constraints, you can re-enable it:
|
|
|
287
289
|
that relied on the incorrect implicit cascade behavior.
|
|
288
290
|
* Add support for :deferrable => :initially_deferred (thanks to
|
|
289
291
|
[@bhavinkamani](https://github.com/bhavinkamani))
|
|
292
|
+
* Works with PostGIS (thanks to [@pete](https://github.com/pete))
|
|
290
293
|
* Bug fix: Circular Reference/Stack Level Too Deep in Column#to_json.
|
|
291
294
|
Thanks to [@robdimarco](https://github.com/robdimarco) for tracking down the problem
|
|
292
295
|
* Bug fix: More robust handling of foreign keys with schema namespaces
|
data/lib/schema_plus/version.rb
CHANGED
data/schema_plus.gemspec
CHANGED
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
21
21
|
s.require_paths = ["lib"]
|
|
22
22
|
|
|
23
|
-
s.add_dependency("rails", ">= 3.2")
|
|
23
|
+
s.add_dependency("rails", ">= 3.2", "<= 3.2.12")
|
|
24
24
|
s.add_dependency("valuable")
|
|
25
25
|
|
|
26
26
|
s.add_development_dependency("rake")
|
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: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-03-
|
|
13
|
+
date: 2013-03-12 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rails
|
|
@@ -20,6 +20,9 @@ dependencies:
|
|
|
20
20
|
- - ! '>='
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: '3.2'
|
|
23
|
+
- - <=
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 3.2.12
|
|
23
26
|
type: :runtime
|
|
24
27
|
prerelease: false
|
|
25
28
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,6 +31,9 @@ dependencies:
|
|
|
28
31
|
- - ! '>='
|
|
29
32
|
- !ruby/object:Gem::Version
|
|
30
33
|
version: '3.2'
|
|
34
|
+
- - <=
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: 3.2.12
|
|
31
37
|
- !ruby/object:Gem::Dependency
|
|
32
38
|
name: valuable
|
|
33
39
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -192,12 +198,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
192
198
|
- - ! '>='
|
|
193
199
|
- !ruby/object:Gem::Version
|
|
194
200
|
version: '0'
|
|
195
|
-
segments:
|
|
196
|
-
- 0
|
|
197
|
-
hash: 1918846716163571609
|
|
198
201
|
requirements: []
|
|
199
202
|
rubyforge_project: schema_plus
|
|
200
|
-
rubygems_version: 1.8.
|
|
203
|
+
rubygems_version: 1.8.25
|
|
201
204
|
signing_key:
|
|
202
205
|
specification_version: 3
|
|
203
206
|
summary: Enhances ActiveRecord schema mechanism, including more DRY index creation
|
|
@@ -226,3 +229,4 @@ test_files:
|
|
|
226
229
|
- spec/support/matchers/have_index.rb
|
|
227
230
|
- spec/support/matchers/reference.rb
|
|
228
231
|
- spec/views_spec.rb
|
|
232
|
+
has_rdoc:
|