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:
link|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
feedback

3 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.
link|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
feedback

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.

link|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
feedback

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
link|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
feedback

Your Answer

 
or
required, but never shown

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