public
Fork of vigetlabs/foreign_key_migrations
Description: A gem/plugin for ActiveRecord that lets you define foreign keys in migrations.
Clone URL: git://github.com/crnixon/foreign_key_migrations.git
 r252@handcar:  crnixon | 2007-08-09 11:10:48 -0400
 All the power of a gem with all the ease of a plugin


git-svn-id: 
http://svn.extendviget.com/lab/trunk/plugins/foreign_key_migrations@202 
e959a6d6-1924-0410-92b3-a6fa492f4c66
cnixon (author)
Thu Aug 09 08:27:15 -0700 2007
commit  9a87046b2e7b7f60690a51801cfd93f565aa22be
tree    bdd40a0184dc1c29207a609ab0de269ba86ac59c
parent  5cea57c3f128b7ec5bd97597e41fa97db2f2020b
...
1
 
2
 
3
4
5
 
6
 
7
8
9
10
 
11
12
 
13
14
15
 
 
 
 
 
 
16
...
 
1
2
3
4
5
 
6
7
8
9
10
11
 
12
13
 
14
15
 
 
16
17
18
19
20
21
22
0
@@ -1,15 +1,21 @@
0
-Wed Aug 8 2007 Clinton R. Nixon <clinton@viget.com>
0
+== 0.3.0 2007-08-08
0
 
0
+* 1 major enhancement:
0
     * Multiple-column foreign keys added
0
 
0
-Tue Aug 7 2007 Clinton R. Nixon <clinton@viget.com>
0
+== 0.2.0 2007-08-07
0
 
0
+* 2 major enhancements:
0
     * Added database dependencies
0
     * Added ALTER TABLE support for PostgreSQL and SQLite
0
 
0
-Mon Aug 6 2007 Clinton R. Nixon <clinton@viget.com>
0
+== 0.1.1 2007-08-06
0
 
0
- * Initial check-in
0
+* 2 minor enhancements:
0
     * Added correct pluralization
0
- * Added MIT license
0
-
0
+ * Added MIT License
0
+
0
+== 0.1.0 2007-08-06
0
+
0
+* 1 major enhancement:
0
+ * Initial release
0
\ No newline at end of file
...
29
30
31
32
 
33
34
35
...
42
43
44
45
46
 
 
 
47
48
49
50
51
52
53
54
 
55
56
57
58
...
29
30
31
 
32
33
34
35
...
42
43
44
 
 
45
46
47
48
49
50
51
52
53
 
 
54
55
56
57
58
0
@@ -29,7 +29,7 @@ spec = Gem::Specification.new do |s|
0
   s.autorequire = "name"
0
   s.test_files = FileList["test/**/*_test.rb"].to_a
0
   s.has_rdoc = true
0
- s.extra_rdoc_files = ["README.txt"]
0
+ s.extra_rdoc_files = ["README", "CHANGELOG", "MIT_LICENSE"]
0
   s.add_dependency("activerecord", ">= 1.15.0")
0
 end
0
 
0
@@ -42,16 +42,16 @@ desc 'Generate documentation for the foreign_key_migrations gem.'
0
 Rake::RDocTask.new(:rdoc) do |rdoc|
0
   rdoc.rdoc_dir = 'rdoc'
0
   rdoc.title = 'ForeignKeyMigrations'
0
- rdoc.options << '--line-numbers' << '--inline-source'
0
- ['README.txt', 'lib/**/*.rb'].each do |file|
0
+ rdoc.options << '--main=README' << '--line-numbers' << '--inline-source'
0
+ rdoc.rdoc_files.include('lib/**/*.rb')
0
+ spec.extra_rdoc_files.each do |file|
0
     rdoc.rdoc_files.include(file)
0
   end
0
 end
0
 
0
 desc 'Test the foreign_key_migrations plugin.'
0
 Rake::TestTask.new(:test) do |t|
0
- t.libs << 'lib'
0
- t.libs << 'test'
0
+ t.libs << 'lib' << 'test'
0
   t.pattern = 'test/**/*_test.rb'
0
   t.verbose = true
0
 end
0
\ No newline at end of file

Comments

    No one has commented yet.