InstallRailsUbuntu » 履歴 » リビジョン 4
リビジョン 3 (Yuumi Yoshida, 2012-07-01 01:44) → リビジョン 4/33 (Yuumi Yoshida, 2012-07-01 01:48)
h1. Ruby on Rails 開発環境の作り方 (Ubuntu) この手順は Ubuntu.12.04 で確認しました。 ここでは、複数の ruby や gem ライブラリーセットを切り替えられる rvm(http://beginrescueend.com/ ) を使ったインストール手順を書きます h3. 1. 必要なライブラリーのインストール <pre> sudo apt-get -y install build-essential curl git-core libreadline5 libreadline-dev zlib1g zlib1g-dev libssl-dev libsqlite3-0 libsqlite3-dev sqlite3 </pre> h3. 2. RVM と Ruby 1.9.3 のインストール h4. i) rvm + ruby のインストール <pre> curl -L https://get.rvm.io | bash -s stable --ruby </pre> 以下のようなメッセージが表示されたら q をタイプします <pre> Ruby (and needed base gems) for your selection will be installed shortly. Before it happens, please read and execute the instructions below. Please use a separate terminal to execute any additional commands. Press 'q' to continue. (END) </pre> h4. ii) rvm起動スクリプトの設定 インストールが修了したら .bashrc の最後に以下の rvmの起動スクリプトを追加します。 <pre> . $HOME/.rvm/scripts/rvm </pre> h4. ii) 確認 .bashrc変更後に以下を実行 <pre> source .bashrc </pre> ここで、ruby -v を実行し ruby 1.9.3 と表示されれば OK <pre> ruby - v ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux] </pre> h3. 3. Ruby on Rails 1.9.3 のインストール h4. i) インストール <pre> curl -L https://get.rvm.io | bash -s stable --rails rvm install 1.9.3 </pre> 以下のようなメッセージが表示されたら q をタイプします rvm use 1.9.3 <pre> rvm gemset create rails3.2 Ruby (and needed base gems) for your selection will be installed shortly. Before it happens, please read and execute the instructions below. Please rvm --default use a separate terminal to execute any additional commands. 1.9.3@rails3.2 Press 'q' to continue. (END) </pre> h4. ii) 確認 h3. 4. Ruby on Rails のインストール <pre> rails -v gem update --system Rails 3.2.6 </pre> h4. ii) 追加 gem 以下のコマンドを実行し Javascriptライブラリーをインストールします <pre> install bundler --no-rdoc --no-ri gem install therubyracer rails --no-rdoc --no-ri </pre> *注*) 最初の Railsプロジェクトを作成した際に、いくつかの gemライブラリーが自動的にインストールされます