public
Description: A Rake task to create fixture files that allows for specifying tables, conditions and limits
Homepage:
Clone URL: git://github.com/milaniliev/db_fixtures_dump_enhanced.git
name age message
file README Loading commit data...
file fixtures.rake
README
This Rake task (db:fixtures:dump) allows you to selectively dump data from your database into YAML fixture files. 
Based on code by Jesse Newland (jnewland.com) and commenters at http://snippets.dzone.com/posts/show/3393.

It is probably obsolete with Rails 2.1.1 or 2.2, as db:fixtures:dump support is coming in Rails-core.

INSTALLATION

Copy fixtures.rake to lib/tasks in your Rails app root.

USAGE

rake db:fixtures:dump TABLES="users" WHERE="users.first_name = 'Bob'" LIMIT="100"