forked from mbleigh/seed-fu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrevo-seed-fu.gemspec
30 lines (24 loc) · 1.03 KB
/
revo-seed-fu.gemspec
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
Gem::Specification.new do |s|
s.name = 'revo-seed-fu'
s.version = '1.0.0'
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","Revo Pty. Ltd."]
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",
"rails/init.rb",
"revo-seed-fu.gemspec",
"spec/schema.rb",
"spec/seed_fu_spec.rb",
"spec/spec_helper.rb",
"tasks/seed_fu_tasks.rake"]
end