可以使用rake -T
或rake --tasks
使用rake显示所有可用任务。但是,是否有可能将这些任务追踪到他们的来源而不是徘徊或更好地为了让rake显示为你的任务来源?
答案 0 :(得分:0)
当我输入此内容时,我注意到rake --help
提供了两个具有相同描述的选项:
-D, --describe [PATTERN] Describe the tasks (matching optional PATTERN), then exit.
-W, --where [PATTERN] Describe the tasks (matching optional PATTERN), then exit.
事实证明,rake -W <task>
确实输出了任务源的位置,尽管它看起来像是从堆栈跟踪中剔除。
这回答了第一个问题。有谁知道是否可以直接从命令行打印任务源?