标签: ruby command-line rake command-line-arguments
我有一个Rakefile:
desc 'submodulePull' task :submodulePull do sh 'git submodule update' sh 'git submodule foreach git pull' end
我想添加有关submodulePull工作的说明。
如何在RakeFile中添加有关命令的文档/注释/描述,这些命令应该被编译器@run时间忽略。
答案 0 :(得分:-1)
你已经在做了 - 这就是desc所代表的内容。
desc