Redmine更新

Redmine 使うときの Ruby, gem, Rails のバージョン関連がいまいち把握していなかったので正直びびってた.使いたいプラグインがあったので気合いで始めてみたけれど,以外とさっくり.

移行したときの設定など.

やってみた

svn checkout http://svn.redmine.org/redmine/branches/2.2-stable redmine
gem install bundler
bundle install --without development test mysql postgresql rmagick
SQLite3
production:
  adapter: sqlite3
  database: db/redmine.db
  encoding: utf8
  timeout: 5000

dbfile から database に変わってた.

configuration.yml
production:
  email_delivery:
    delivery_method: :smtp
    smtp_settings:
      enable_starttls_auto: true
      address: "smtp.gmail.com"
      port: 587
      domain: "xxx" # 'your.domain.com' for GoogleApps
      authentication: :plain
      user_name: "xxx"
      password: "xxx"

メールの設定は email.yml からだけれども,全体の設定に変わったので,設定の前に email_delivery: を置く.

無事終わりました.

画面が大分とかわって,なんだか格好いい!がんばりましたー.それよりもブート時のサービスチェックのためのサーバーの再起動でディスクのチェックのために ssh ログインできないのが一番びびったのです.