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
crnixon (author)
Sun Jul 20 10:34:18 -0700 2008
commit  9afb492e862c936d04f0507d5b82ef96b9a02260
tree    1c386cfdf3cfa1756ebf980ca815ef1aafe51d6b
parent  1796cc7672e9c5c6a489aad374e9eb2204446720
100644 23 lines (15 sloc) 0.642 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
load 'bones_tasks/setup.rb'
 
require 'rubygems'
require 'activerecord'
 
ensure_in_path 'lib'
require 'foreign_key_migrations'
 
task :default => 'test:run'
 
PROJ.name = 'foreign_key_migrations'
PROJ.authors = 'Clinton R. Nixon'
PROJ.email = 'clinton.nixon@viget.com'
PROJ.url = 'http://github.com/crnixon/foreign_key_migrations'
PROJ.rubyforge.name = 'foreign_key_migrations'
PROJ.version = Viget::ForeignKeyMigrations.version
PROJ.gem.dependencies = [['activerecord']] # ['gem', '>= version']
 
 
DESCRIPTION = "Adds foreign key migrations to ActiveRecord."
GEM_NAME = 'foreign_key_migrations' # what ppl will type to install your gem