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 (
spawner /
| name | age | message | |
|---|---|---|---|
| |
MIT-LICENSE | Tue Jun 10 21:01:26 -0700 2008 | [soveran] |
| |
README | Tue Jun 10 21:01:26 -0700 2008 | [soveran] |
| |
init.rb | Tue Jun 10 21:01:26 -0700 2008 | [soveran] |
| |
lib/ | Tue Jun 10 21:01:26 -0700 2008 | [soveran] |
README
Spawner
=========================
Spawner is a simple fixtures replacement. In the examples
I use Faker to generate random data, but you can use any method.
Usage:
class User < ActiveRecord::Base
spawner do |user|
user.name = Faker::Name.name
user.email = Faker::Internet.email
end
end
Then, in your test or in any other place:
@user = User.spawn
Or, if you need something special:
@user = User.spawn do |user|
user.name = "Larralde!"
end
Copyright (c) 2008 Michel Martens for CitrusByte (http://www.citrusbyte.com), released under the MIT license.




