2012-12-30 48 views
0

我是初學者,在rails.i中已經給出了一個項目(https://github.com/cloudspokes/cs-website-cms)。我 命令來運行它:軌服務器 。有一個警告:public不再用於避免重載Module#public,use:public_folder instead

:公衆已不再使用,以避免過載模塊#公衆使用:從/home/ritesh/.rvm/gems/ruby- public_folder代替 [email protected]/bundler/gems/resque-c528f41f384b/lib/resque/server.rb:16:in <class:Server>' => Booting Thin => Rails 3.2.8 application starting in development on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown server Exiting /home/ritesh/.rvm/gems/[email protected]/gems/restforce-0.1.8/lib/restforce/client.rb:281:in authenticate!':沒有身份驗證中間件(RuntimeError) from/home/ritesh/rails_projects/cs- website-cms-master/config/initializers/streaming.rb:11:在''

和錯誤不存在認證中間件。 任何一個請幫助我如何擺脫這個警告和錯誤?

回答

0

您應該運行foreman start -p 3000而不是rails s命令。正如在自述文件中明確提到的那樣。

謝謝, Dinesh