救援在耙子任务?

我试图在耙子任务中使用撬棒救援。 像这样的东西:

   bundle exec rescue rake my:task

但是,当发生异常( undefined method... )它就像正常一样存在。 我如何使用我的耙子任务使用撬棒救援?


你有没有尝试将你的任务物体包裹在救援区?

task 'my_task' do
  Pry.rescue {
    things.that_need_doing
  }
end
链接地址: http://www.djcxy.com/p/79891.html

上一篇: rescue In a rake Task?

下一篇: How to get value of input when autocompleted by Chrome