2012-09-01 2 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에서이 작업을 수행해야합니다

gem 'pusher-client', :git => "git://github.com/pusher/pusher-ruby-client.git" 
+0

우수함! 내 멍청한 실수! 고마워. – tomsoft

관련 문제