This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 4f2270241cf0945b8264480bbc5fce3304f52dd9
tree 1882df1134d740a81936adf255e347fa7767e305
parent a5c2cfb39c96121e53760c726eccecf1052259c9
tree 1882df1134d740a81936adf255e347fa7767e305
parent a5c2cfb39c96121e53760c726eccecf1052259c9
seed-fu /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri Jul 04 12:21:09 -0700 2008 | |
| |
README | Sat Apr 19 15:10:44 -0700 2008 | |
| |
Rakefile | Fri Jul 04 11:55:20 -0700 2008 | |
| |
init.rb | Fri Jul 04 11:55:20 -0700 2008 | |
| |
lib/ | Tue Aug 19 06:50:12 -0700 2008 | |
| |
rails/ | Fri Jul 04 11:55:20 -0700 2008 | |
| |
seed-fu.gemspec | ||
| |
spec/ | Sat Aug 16 15:01:52 -0700 2008 | |
| |
tasks/ | Wed Jul 16 13:38:59 -0700 2008 |
README
Seed Fu ======= 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. If you have suggestions or come across problems, please report them on the Lighthouse project for Seed Fu: http://mbleigh.lighthouseapp.com/projects/10223-seed-fu/overview Usage ======= Seed data is taken from the db/fixtures directory. Simply make descriptive .rb files in that directory (they can be named anything, but users.rb for the User model seed data makes sense, etc.). These scripts will be run whenever the db:seed rake task is called. You can put arbitrary Ruby code in these files, but remember that it will be executed every time the rake task is called, so it needs to be runnable multiple times on the same database. You can also have environment-specific seed data placed in db/fixtures/ENVIRONMENT that will only be loaded if that is the current environment. Let's say we want to populate a few default users. In db/fixtures/users.rb we write the following code: User.seed(:login, :email) do |s| s.login = "bob" s.email = "bob@bobson.com" s.first_name = "Bob" s.last_name = "Bobson" end User.seed(:login, :email) do |s| s.login = "bob" s.email = "bob@stevenson.com" s.first_name = "Bob" s.last_name = "Stevenson" end That's all you have to do! You will now have two users created in the system and you can change their first and last names in the users.rb file and it will be updated as such. The arguments passed to the <ActiveRecord>.seed method are the constraining attributes: these must remain unchanged between db:seed calls to avoid data duplication. By default, seed data will constrain to the id like so: Category.seed do |s| s.id = 1 s.name = "Buttons" end Category.seed do |s| s.id = 2 s.name = "Bobbins" s.parent_id = 1 end Note that any constraints that are passed in must be present in the subsequent seed data setting. Copyright (c) 2008 Michael Bleigh, released under the MIT license








