wiki:Installation
Warning: Can't synchronize with repository "(default)" (Unsupported version control system "svn": dlopen(/opt/local/lib/svn-python2.6/libsvn/_fs.so, 2): Library not loaded: /opt/local/lib/libssl.0.9.8.dylib Referenced from: /opt/local/lib/svn-python2.6/libsvn/_fs.so Reason: image not found). Look in the Trac log for more information.

インストール

# mysql -u root
mysql> create database rana;
mysql> grant all on rana.* to 'rana_user'@'localhost';
  • config/database.yml の設定
# cd $RANA_HOME
# cp config/database.example.yml config/database.yml
# vim config/database.yml
# more config/database.yml
production:
  adapter: mysql
  database: rana
  username: rana_user
  password: *******
  host: localhost
  encoding: utf8
  • テーブルの作成
# rake db:migrate RAILS_ENV="production"
  • サーバの起動
# ruby script/server -e production