Grow your app from seeds
Use rails database seed rake task to instantly add data to your development db, it helps spot design and user flow issues quickly.
Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!
Use rails database seed rake task to instantly add data to your development db, it helps spot design and user flow issues quickly.
Comments
Personally I like to have a rake task that populates the database. The rake task uses the same blueprint file (provided by Machinist) as I use in my unit tests.
Post a comment