public
Fork of mbleigh/seed-fu
Description: Advanced seed data handling for Rails, combining the best practices of several methods together.
Homepage: http://mbleigh.lighthouseapp.com/projects/10223-seed-fu
Clone URL: git://github.com/zdennis/seed-fu.git
seed-fu / seed-fu.gemspec
100644 31 lines (25 sloc) 1.072 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Gem::Specification.new do |s|
  s.name = 'seed-fu'
  s.version = '0.0.3'
  s.date = '2008-08-16'
  
  s.summary = "Allows easier database seeding of tables."
  s.description = "Seed Fu is an attempt to once and for all solve the problem of inserting and maintaining seed data in a database. It uses a variety of techniques gathered from various places around the web and combines them to create what is hopefully the most robust seed data system around."
  
  s.authors = ["Michael Bleigh"]
  s.email = "michael@intridea.com"
  s.homepage = 'http://github.com/mbleigh/seed-fu'
  
  s.has_rdoc = true
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
 
  s.add_dependency 'rails', ['>= 2.1']
  
  s.files = ["README",
             "Rakefile",
             "init.rb",
             "lib/seed-fu.rb",
             "lib/autotest/discover.rb",
             "rails/init.rb",
             "seed-fu.gemspec",
             "spec/schema.rb",
             "spec/seed_fu_spec.rb",
             "spec/spec_helper.rb",
             "tasks/seed_fu_tasks.rake"]
 
end