rake 任務引數傳遞問題解決

c3tc3tc3t發表於2015-09-11

原文 :  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]

  

  

 

相關文章