Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions rails_tip/2016-12-12-find-and-describe-rake-tasks.md
Original file line number Diff line number Diff line change
@@ -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.