ruby / rake

A make-like build utility for Ruby.

Home Page:https://ruby.github.io/rake

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Show all task when `rake -T` is executed

taki opened this issue · comments

commented

Description

Currently, rake -T command show only task with description. I want to show all defined task because I do not notice that task2 is defined.
How do you think? If you think it is not sure, Please feel free to close.

Thank you.

Example

Below is Rakefile and rake -T is executed.

desc 'task1'
task :task1

task :task2

Current

rake task1  # task1

Feature

rake task1  # task1
rake task2

I always used rake -AT. Is it enough for your expectations?

I always used rake -AT. Is it enough for your expectations?

rake -AT is enough. Thank you.