Rubyめも

Ruby のインストール

Rubyがインストールされていれば削除する

# su
# yum remove ruby

Ruby最新版をダウンロード

# cd /usr/src/
# wget  ftp://core.ring.gr.jp/pub/lang/ruby/ruby-1.8.6-p111.tar.gz

ファイルを展開

# tar zxvf ruby-1.8.6-p111.tar.gz
# cd ruby-1.8.6-p111

インストール

# ./configure
# make
# make test

test succeeded

# make install

RubyGems のインストール

RubyGemsはRubyのパッケージ管理システム。コマンド名はgem。

# wget http://rubyforge.org/frs/download.php/11289/rubygems-0.9.0.tgz
# tar zxvf rubygems-0.9.0.tgz
# cd rubygems-0.9.0
# ruby setup.rb

Ruby on Rails のインストール

# gem install rails --include-dependencies

うまくいかない場合は

# gem install rails --remote --include-dependencies

mysql のインストール

MySQL5.0インストール を参考にしてインストール

Ruby on Rails アプリケーション起動テスト

適当な場所にディレクトリを作成

# cd /var
# mkdir rails_projects
# cd rails_projects

新規プロジェクトを生成

# rails demo
# cd demo

サーバを実行(RailsではプロジェクトごとにWWWサービスを実行する)

# ruby script/server

これでhttp://localhost:3000/ にアクセスできればOK!

(サーバをデーモンモードで起動するには)

# ruby script/server -d

トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2021-09-19 (日) 19:09:29