Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I run ruby commands such as

gem install heroku

or

gem update --system

I receive the warning

ERROR: Could not find a valid gem 'heroku' (>= 0) in any repository

ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError)

Errno::ECONNREFUSED: No connection could be made because the target machine actively refused it. - connect(2) (http://rubygems.org/latest_specs.4.8.gz)

I've looked through several related posts, most of which suggest network issues; I've turned off all anti-virus/firewall software, but had no luck. Note that others on the same network aren't facing these problems. I'm baffled as to how to proceed.

RubyGems Environment:

  • RUBYGEMS VERSION: 1.5.2
  • RUBY VERSION: 1.8.7 (2011-02-18 patchlevel 334) [i386-mingw32]
  • INSTALLATION DIRECTORY: C:/RailsInstaller/Ruby1.8.7/lib/ruby/gems/1.8
  • RUBY EXECUTABLE: C:/RailsInstaller/Ruby1.8.7/bin/ruby.exe
  • EXECUTABLE DIRECTORY: C:/RailsInstaller/Ruby1.8.7/bin
  • RUBYGEMS PLATFORMS:
    • ruby
    • x86-mingw32
  • GEM PATHS:
    • C:/RailsInstaller/Ruby1.8.7/lib/ruby/gems/1.8
    • C:/Users/xxxxx/.gem/ruby/1.8
  • GEM CONFIGURATION:
    • :update_sources => true
    • :verbose => true
    • :benchmark => false
    • :backtrace => false
    • :bulk_threshold => 1000
  • REMOTE SOURCES:
share|improve this question
Can you post the output from running gem env? – theIV May 30 '11 at 4:14
I've done so above – gc20 May 30 '11 at 5:51

4 Answers

  1. Check if you can access the internet
  2. If you're behind a HTTP proxy server, take a look at this question
  3. If 1 and 2 don't help you, post some more info.
share|improve this answer
I can access the internet and I'm not behind an HTTP proxy sever. I've posted gem -env details above. Does that help? – gc20 May 30 '11 at 5:52
@user77 - Since you ruled out network connectivity issues, firewalls and http-proxy I'm out of potential reasons. The error is a generic conn error.. so finding it tough to google out potential causes. – Gishu May 30 '11 at 6:13
Alright, thanks for the help. I'll let y'all know if I figure it out. – gc20 May 30 '11 at 10:07

Try and download http://rubygems.org/latest_specs.4.8.gz. Does that work? If it still dosnt work then you have a network issue.

share|improve this answer
Yes, it does work. – gc20 May 30 '11 at 5:52
And can you install other gems? – Devin M May 30 '11 at 22:32
Nope. Can't install anything. – gc20 May 31 '11 at 6:02

May I suggest that you download the archive: http://rubygems.org/pages/download#formats

And then installing it using the instruction give on the page.

Does this work:

$ gem install slimgems
share|improve this answer
Great idea, but it didn't work unfortunately. – gc20 Jun 3 '11 at 11:45
Hmm. Maybe try gem uninstall heroku first? – MindTooth Jul 20 '11 at 10:04

Old post, but this might help someone else. Specify your proxy. This seems to work even though the http_proxy environment variable is already set:

gem install heroku --http-proxy http://yourproxyserver:port
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.