rake --tasks 完整描述(未删减)
也许它是代码 18 之一,
但是当我在 Rakefile 上运行 rake -T 时,我的任务的长描述总是被删除。 有没有什么方法可以显示完整的描述,而不必缩短描述?
谢谢
Maybe it's one of those code 18,
but when I run rake -T on my Rakefile, the long descriptions of my tasks are always cut.
Is there any way to display the full description without having to make the desc shorter?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
格式略有不同(描述从下一行开始,而不是作为当前行的注释),但这将为您提供完整的描述:
此外,如果您确实想要其他格式,您可以将输出通过管道传输到
cat
改为:The format is slightly different (description starts on the next line instead of as a comment on the current line), but this will give you the full descriptions:
Also, if you really want the other format, you can pipe the output to
cat
instead:耙子-D
rake -D
三种解决方案:
1)你可以定义你自己的“-T”
2)傻瓜,没有tty:
3)修改rake命令
我推荐版本2)
(用rake-0.8.7测试)
Three solutions:
1) You may define your own '-T'
2) fool, there is no tty:
3) Modify a rake command
I would recommend version 2)
(Tested with rake-0.8.7)
您可以设置一个环境变量:
There's an environment variable you can set: