From 81245d61b0de0b47f5c1291d79f1bb77f03ccc60 Mon Sep 17 00:00:00 2001 From: prakash Date: Mon, 12 Dec 2016 10:49:48 +0530 Subject: [PATCH] Tip: Find and describe rake tasks --- .../2016-12-12-find-and-describe-rake-tasks.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 rails_tip/2016-12-12-find-and-describe-rake-tasks.md diff --git a/rails_tip/2016-12-12-find-and-describe-rake-tasks.md b/rails_tip/2016-12-12-find-and-describe-rake-tasks.md new file mode 100644 index 0000000..0d69232 --- /dev/null +++ b/rails_tip/2016-12-12-find-and-describe-rake-tasks.md @@ -0,0 +1,17 @@ +--- + +title: Find and describe all rake tasks +tip-number: 36 +tip-username: prakash +tip-username-profile: https://github.com/prakash-subramani +tip-description: Find and describe all rake tasks. + +--- + + +If you have a large application there is that you’ve written multiple rake tasks. Rails also comes built in with a number of rake tasks that can be hard to remmeber or find. The easiest quickest way to find rake tasks is to run + +```bundle exec rake -T +``` + +The -T flag tells rake to lists all the rake tasks that it finds in an application. It also prints the description of the task. \ No newline at end of file