abantos / bolt

A task automation tool (similart to grunt) for Python
MIT License
15 stars 8 forks source link

List all tasks #106

Open openbrian opened 5 years ago

openbrian commented 5 years ago

Can you create a standard task that will list out the other registered tasks? If you think this is a good idea, I could work on it.

CurroRodriguez commented 5 years ago

@openbrian This sounds like a great idea. Could you elaborate more on how do you see it working? It will be nice to have on the description for this issue what the end goal for the task is. Also, how the output will look like. Are you considering sub-tasks and group tasks? I would like to hear more about your ideas.

openbrian commented 5 years ago

Like running rake --tasks

rake about                              # List versions of all Rails frameworks and the environment
rake app:template                       # Applies the template supplied by LOCATION=(/path/to/template) or URL
rake app:update                         # Update configs and some other initially generated files (or use just update:configs or update:bin)
rake assets:clean[keep]                 # Remove old compiled assets
rake assets:clobber                     # Remove compiled assets
rake assets:environment                 # Load asset compile environment
...
CurroRodriguez commented 5 years ago

@openbrian OK, show me what you got 😄

openbrian commented 4 years ago

I haven't forgotten about this.