http://reval-mocchi.rhcloud.com

OpenShiftでrubyを使ってみようとしたら...

最小構成でdeployしてみたら...

http://gyazo.com/35d361863d8917b6dba6235850ce02c1.png

You have already activated rack 1.5.2, but your Gemfile requires rack 1.6.0. Using bundle exec may solve this. (Gem::LoadError)

option:enable style:terminal title:error log

おいおい,rack 1.5.2があるじゃないか,と怒られました.

Gemfileの書き換え

source 'https://rubygems.org'

gem 'rack','1.5.2'
gem 'sinatra'
gem 'thin'

option:enable title:Gemfile

rack 1.5.2にすればいいので,そうしました.