2012-09-01 158 views
0

我想安裝推客戶端的寶石。寶石安裝好,但沒有捆綁

我已經把這個在我的Gemfile:

gem "pusher-client",:git=>"git://github.com/logankoester/pusher-client.git" 

束裝就可以了

但是當我啓動應用程序:

/Users/thomas/.rvm/gems/ruby-1.9.2-p318/gems/bundler-1.2.0/lib/bundler/runtime.rb:76:in `require': no such file to load -- pusher/client (LoadError) 
from /Users/thomas/.rvm/gems/ruby-1.9.2-p318/gems/bundler-1.2.0/lib/bundler/runtime.rb:76:in `rescue in block in require' 
from /Users/thomas/.rvm/gems/ruby-1.9.2-p318/gems/bundler-1.2.0/lib/bundler/runtime.rb:62:in `block in require' 
from /Users/thomas/.rvm/gems/ruby-1.9.2-p318/gems/bundler-1.2.0/lib/bundler/runtime.rb:55:in `each' 
from /Users/thomas/.rvm/gems/ruby-1.9.2-p318/gems/bundler-1.2.0/lib/bundler/runtime.rb:55:in `require' 
from /Users/thomas/.rvm/gems/ruby-1.9.2-p318/gems/bundler-1.2.0/lib/bundler.rb:128:in `require' 
from /Users/thomas/Documents/TweetTv/server/tvtweet/config/application.rb:12:in `<top (required)>' 
from /Users/thomas/.rvm/gems/ruby-1.9.2-p318/gems/railties-3.1.0/lib/rails/commands.rb:38:in `require' 
from /Users/thomas/.rvm/gems/ruby-1.9.2-p318/gems/railties-3.1.0/lib/rails/commands.rb:38:in `<top (required)>' 
from script/rails:6:in `require' 
from script/rails:6:in `<main>' 

這似乎是鏈接到 - 在寶石名稱中,但其他寶石正確安裝。

任何幫助或建議,非常感謝......

回答

2

git路徑是錯誤的。如果您在GitHub上訪問the repository,您會看到代碼已移至here

你應該在你Gemfile,而不是這樣做:

​​
+0

太好了!愚蠢的錯誤在我身邊!非常感謝 – tomsoft

相關問題