手動でRailsをgemからインストールする

ネットワークからしかインストールしたことがなかったんですよね。
めもめも。

.gemファイルをダウンロードする

wget http://files.rubyforge.vm.bytemark.co.uk/rake/rake-0.8.3.gem
wget http://files.rubyforge.vm.bytemark.co.uk/activesupport/activesupport-2.0.2.gem
wget http://files.rubyforge.vm.bytemark.co.uk/activerecord/activerecord-2.0.2.gem
wget http://files.rubyforge.vm.bytemark.co.uk/actionpack/actionpack-2.0.2.gem
wget http://files.rubyforge.vm.bytemark.co.uk/actionmailer/actionmailer-2.0.2.gem
wget http://files.rubyforge.vm.bytemark.co.uk/activeresource/activeresource-2.0.2.gem
wget http://files.rubyforge.vm.bytemark.co.uk/rails/rails-2.0.2.gem

ダウンロードしたファイルからインストールを実行する。

.gemのディレクトリにて下記のコマンドを実行する

gem install --local rake
gem install --local activesupport
gem install --local activerecord
gem install --local actionpack
gem install --local actionmailer
gem install --local activeresource
gem install --local rails

インストールの確認

gem list
rails -v