rake --tasks 完整描述(未删减)

发布于 2024-12-01 09:36:31 字数 126 浏览 0 评论 0原文

也许它是代码 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

注定孤独终老 2024-12-08 09:36:31

格式略有不同(描述从下一行开始,而不是作为当前行的注释),但这将为您提供完整的描述:

rake -D

此外,如果您确实想要其他格式,您可以将输出通过管道传输到 cat 改为:

rake -T | 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:

rake -D

Also, if you really want the other format, you can pipe the output to cat instead:

rake -T | cat
她如夕阳 2024-12-08 09:36:31

-D, --describe [PATTERN] 描述任务(匹配可选
模式),然后退出。

耙子-D

-D, --describe [PATTERN] Describe the tasks (matching optional
PATTERN), then exit.

rake -D

甜尕妞 2024-12-08 09:36:31

三种解决方案:

1)你可以定义你自己的“-T”

task :longT do
  app = Rake.application
  app.tasks.each{|task|
    puts "%-20s  # %s" % [task.name, task.comment] if task.comment
  }
end

2)傻瓜,没有tty:

Rake.application.tty_output= false    

3)修改rake命令

module Rake
  class Application
    def truncate_output?
      #tty_output? || ENV['RAKE_COLUMNS']
      false
    end
  end
end

我推荐版本2)

(用rake-0.8.7测试)

Three solutions:

1) You may define your own '-T'

task :longT do
  app = Rake.application
  app.tasks.each{|task|
    puts "%-20s  # %s" % [task.name, task.comment] if task.comment
  }
end

2) fool, there is no tty:

Rake.application.tty_output= false    

3) Modify a rake command

module Rake
  class Application
    def truncate_output?
      #tty_output? || ENV['RAKE_COLUMNS']
      false
    end
  end
end

I would recommend version 2)

(Tested with rake-0.8.7)

寒江雪… 2024-12-08 09:36:31

您可以设置一个环境变量:

export RAKE_COLUMNS=200

There's an environment variable you can set:

export RAKE_COLUMNS=200
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文