provideal-migration-helpers 1.0.1 → 1.0.2
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/.gitignore +3 -0
- data/Rakefile +3 -3
- data/VERSION +1 -1
- data/{migration-helpers.gemspec → provideal-migration-helpers.gemspec} +9 -8
- metadata +9 -7
data/.gitignore
ADDED
data/Rakefile
CHANGED
@@ -5,10 +5,10 @@ require 'rake'
|
|
5
5
|
begin
|
6
6
|
require 'jeweler'
|
7
7
|
Jeweler::Tasks.new do |gemspec|
|
8
|
-
gemspec.name = "migration-helpers"
|
9
|
-
gemspec.summary = "
|
8
|
+
gemspec.name = "provideal-migration-helpers"
|
9
|
+
gemspec.summary = "Adds foreign key support for MySQL and PostgreSQL in Rails migrations"
|
10
10
|
gemspec.email = "info@provideal.net"
|
11
|
-
gemspec.homepage = "http://github.com/provideal/migration-helpers/"
|
11
|
+
gemspec.homepage = "http://github.com/provideal/provideal-migration-helpers/"
|
12
12
|
gemspec.authors = ["René Sprotte"]
|
13
13
|
end
|
14
14
|
rescue LoadError
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.2
|
@@ -4,25 +4,26 @@
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{migration-helpers}
|
8
|
-
s.version = "1.0.
|
7
|
+
s.name = %q{provideal-migration-helpers}
|
8
|
+
s.version = "1.0.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["
|
12
|
-
s.date = %q{2009-09-
|
11
|
+
s.authors = ["Ren\303\251 Sprotte"]
|
12
|
+
s.date = %q{2009-09-17}
|
13
13
|
s.email = %q{info@provideal.net}
|
14
14
|
s.files = [
|
15
|
-
"
|
15
|
+
".gitignore",
|
16
|
+
"Rakefile",
|
16
17
|
"VERSION",
|
17
18
|
"init.rb",
|
18
19
|
"lib/migration_helpers.rb",
|
19
|
-
"migration-helpers.gemspec"
|
20
|
+
"provideal-migration-helpers.gemspec"
|
20
21
|
]
|
21
|
-
s.homepage = %q{http://github.com/provideal/migration-helpers/}
|
22
|
+
s.homepage = %q{http://github.com/provideal/provideal-migration-helpers/}
|
22
23
|
s.rdoc_options = ["--charset=UTF-8"]
|
23
24
|
s.require_paths = ["lib"]
|
24
25
|
s.rubygems_version = %q{1.3.5}
|
25
|
-
s.summary = %q{
|
26
|
+
s.summary = %q{Adds foreign key support for MySQL and PostgreSQL in Rails migrations}
|
26
27
|
|
27
28
|
if s.respond_to? :specification_version then
|
28
29
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: provideal-migration-helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Ren\xC3\xA9 Sprotte"
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-09-
|
12
|
+
date: 2009-09-17 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -22,14 +22,16 @@ extensions: []
|
|
22
22
|
extra_rdoc_files: []
|
23
23
|
|
24
24
|
files:
|
25
|
+
- .gitignore
|
25
26
|
- Rakefile
|
26
27
|
- VERSION
|
27
28
|
- init.rb
|
28
29
|
- lib/migration_helpers.rb
|
29
|
-
- migration-helpers.gemspec
|
30
|
-
has_rdoc:
|
31
|
-
homepage: http://github.com/provideal/migration-helpers/
|
32
|
-
licenses:
|
30
|
+
- provideal-migration-helpers.gemspec
|
31
|
+
has_rdoc: true
|
32
|
+
homepage: http://github.com/provideal/provideal-migration-helpers/
|
33
|
+
licenses: []
|
34
|
+
|
33
35
|
post_install_message:
|
34
36
|
rdoc_options:
|
35
37
|
- --charset=UTF-8
|
@@ -53,6 +55,6 @@ rubyforge_project:
|
|
53
55
|
rubygems_version: 1.3.5
|
54
56
|
signing_key:
|
55
57
|
specification_version: 3
|
56
|
-
summary:
|
58
|
+
summary: Adds foreign key support for MySQL and PostgreSQL in Rails migrations
|
57
59
|
test_files: []
|
58
60
|
|