2013-10-30 48 views
3

解決我的問題,這是在 「will_paginate error in production undefined method 'paginate'」 的討論,我試圖運行:爲什麼「rails runner -e production」無法正常工作?

script/rails runner -e production 

和:

bundle exec script/rails runner -e production 

在服務器上一樣建議在此GitHub的問題:https://github.com/mislav/will_paginate/issues/308#issuecomment-17167158

但我收到以下錯誤:

bundler: command not found: script/rails 
Install missing gem executables with `bundle install` 

捆綁安裝不起作用。有什麼建議麼?

我使用的是:紅寶石2.0.0p247來說,Rails 4.0.0,Ubuntu的LTS 12.10,獨角獸,Capistrano的

+2

'bundle exec rails runner -e production'怎麼樣? –

+0

我已經試過... – crispychicken

+0

您的第一個建議正在工作;我沒有看到你刪除了「腳本/」。你想發佈答案,以便我可以接受嗎? – crispychicken

回答

8

試試這個:

bundle exec rails runner -e production

相關問題