public
Fork of joshknowles/db-populate
Description: Manage seed data for Rails projects
Homepage:
Clone URL: git://github.com/ffmike/db-populate.git
db-populate / db_populate.gemspec
100644 29 lines (28 sloc) 0.867 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
Gem::Specification.new do |s|
  s.name = "db_populate"
  s.version = "0.2.4"
  s.date = "2009-09-15"
  s.summary = "Seed data populator for Rails"
  s.email = "MikeG1@larkfarm.com"
  s.homepage = "http://github.com/ffmike/db-populate/tree/master"
  s.description = "db_populate provides rake and code support for adding seed data to Rails projects. Forked from a rake task by
Josh Knowles, plus code by Luke Francl."
  s.has_rdoc = false
  s.authors = ["Mike Gunderloy", "Josh Knowles", "Luke Francl"]
  s.files = [
    "MIT-LICENSE",
    "README",
    "Rakefile",
    "init.rb",
    "install.rb",
    "lib/create_or_update.rb",
    "rails/init.rb",
    "tasks/populate.rake",
    "tasks/db_populate_tasks.rake",
    "test/database.yml",
    "test/schema.rb",
    "test/test_helper.rb",
    "test/db_populate_test.rb",
    "uninstall.rb"
    ]
end