Created
July 2, 2013 21:35
-
-
Save robinsound/5913385 to your computer and use it in GitHub Desktop.
Command rake to tell you all tasks available
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
# rake -T, --tasks [PATTERN] Display the tasks (matching optional PATTERN) with descriptions, then exit. | |
rake -T |
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
# here is a sample result of the command rake tasks | |
# --- | |
rake about # List versions of all Rai... | |
rake airbrake:deploy # Notify Airbrake of a new... | |
rake airbrake:heroku:add_deploy_notification # Install Heroku deploy no... | |
rake airbrake:test # Verify your gem installa... | |
rake assets:clean # Remove compiled assets | |
rake assets:precompile # Compile all the assets n... | |
rake db:create # Create the database from... | |
rake db:drop # Drops the database using... | |
rake db:fixtures:load # Load fixtures into the c... | |
rake db:migrate # Migrate the database (op... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment