码迷,mamicode.com
首页 > 其他好文 > 详细

rake 任务参数传递问题解决

时间:2015-09-11 15:56:00      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

原文 :  https://robots.thoughtbot.com/how-to-use-arguments-in-a-rake-task

 

namespace :tweets do
  desc ‘Send some tweets to a user‘
  task :send, [:username] => [:environment] do |t, args|
    Tweet.send(args[:username])
  end
end

  注意,当你安装了zsh时候,执行下面命令会报错

 

rake tweets:seed[100,200]
zsh: no matches found: tweets:seed[100,200]

  因为zsh不能正确解析,所以需要这样操作

rake tweets:send\[cpytel\]

或者
rake ‘tweets:send[cpytel]‘

也可以在zsh的配置文件中添加 unsetopt nomatch 解决,在执行时使用

rake tweets:send[cpytel]

  

  

 

rake 任务参数传递问题解决

标签:

原文地址:http://www.cnblogs.com/or2-/p/4800976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!