I am trying to update a rails application that requires rails-2.3.5, which in turn seems to require rack-1.0.1. Many (many!) Attempts of each of the following did not work:
ERROR: could not find gem rails locally or in a repository
or
# gem install rails -v=2.3.5 --source http:
WARNING: RubyGems 1.2+ index not found for:
http:
RubyGems will revert to legacy indexes degrading performance.
Bulk updating Gem source index for: http:
ERROR: While executing gem ... (Gem::RemoteSourceException)
Error fetching remote gem cache: SocketError: getaddrinfo: Name or service not known (http:
or substituting http://gems.rubyonrails.org . When I tried http://gems.github.org , I get an index error.
Just try to run gems update railsas a command, but it will install version 2.3.3.
Why doesn't it work?
For reference:
# cat /root/.gemrc
---
:benchmark: false
:verbose: true
:update_sources: true
:sources:
- http:
- http:
:bulk_threshold: 1000
:backtrace: false
(Is the installer really in version 2?)
Jamie source
share