rake -h显示rake的选项.
rake -D描述了rake任务.
rake mytask运行mytask.
是否有类似rake -h mytask的内容可以描述mytask,并列出其可选和/或必需的参数?
例如,以下代码将在rails中运行单个测试:
rake test TEST=path_to_test
如何发现TEST = path_to_test是rake test的可选参数?
解决方法 命令rake -D test不在我的系统上.相反,你可以使用# List test command with detailsrake test -D # List all test tasks with descriptionrake test -T# List all test tasks even without description(Recommened)rake test -T -A总结
以上是内存溢出为你收集整理的ruby-on-rails – 如何获得特定rake任务的帮助?全部内容,希望文章能够帮你解决ruby-on-rails – 如何获得特定rake任务的帮助?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)