Subversionインストール

前回「初心者のRuby on Rails for Windows インストール(2)」でRoRのインストールを紹介しました。

今回はRoRプラグインをインストールする際に必須のsubversionのインストールです。


Subversionの動かし方は2つ。
1.単体で動かす。
2.Apacheと連携させて動かす。
Apacheと連携させると、ApacheBasic認証やDigest認証等の認証機能、SSL等の暗号化通信等を利用することができるようです。
これを行いたい場合は他のサイトを参考にしてみてください。


今回はRubySVNを使用してプラグインのインストールを行うための準備をするだけなので、単体で動かす方法を紹介します。
(っといってもインストールするだけですが・・・)

インストール

ダウンロード先
http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91
ダウンロードファイル
http://subversion.tigris.org/files/documents/15/39559/svn-1.4.5-setup.exe

ダウンロードしたexeファイルをダブルクリックしてインストール開始します。迷わずNext を連打して進めましょう(笑)

インストール終了後、以下のメッセージが表示されます。

Information

Please read the following important information before continuing.

When you are ready to continue with Setup, click Next.

Post installation notes for Subversion:

Read the documentation included with this distribution.
For more info - Fire up your browser and point it to:
  http://subversion.tigris.org/ and look for documentation.
Take a close look in the Readme.txt file found in the Subversion folder and  the start menu. It may save you some time if you get into trouble.
Notes for Windows 9x and Millenium users:
Add this line to your Autoexec.bat file (adjust the path so it fits your system) if it's not there:

    SET APR_ICONV_PATH="C:\Program Files\Subversion\iconv"

Restart your machine if your Autoexec.bat file are changed.

Thanks for using Subversion! And..  enjoy..
Your Subversion team

Windows 95系のユーザは 環境変数 APR_ICONV_PATH をセットしましょう」言ってます。私は WindowXPなので無視です(笑)


以上でインストール終了です。

これでRoRをガンガン進めることができる環境が整いました。