Created
March 2, 2011 16:35
-
-
Save timmyc/851217 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tuggies ~/code/g5/core: rake -T | |
(in /Users/timmycrawford/code/g5/core) | |
rake default # Get set up for development. | |
rake parallel:create[count] # create test databases via db:create --> parallel:create[num_cpus] | |
rake parallel:drop[count] # drop test databases via db:drop --> parallel:drop[num_cpus] | |
rake parallel:features[count,path_prefix,options] # run features in parallel with parallel:features[num_cpus] | |
rake parallel:load_schema[count] # load dumped schema for test databases via db:schema:load --> parallel:load_schema[num_cpus] | |
rake parallel:migrate[count] # update test databases via db:mgrate --> parallel:migrate[num_cpus] | |
rake parallel:prepare[count] # update test databases by dumping and loading --> parallel:prepare[num_cpus] | |
rake parallel:spec[count,path_prefix,options] # run spec in parallel with parallel:spec[num_cpus] | |
rake parallel:test[count,path_prefix,options] # run test in parallel with parallel:test[num_cpus] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment