vmc rails-consoleを使うとクラウド側にあるrailsアプリのconsoleが使える。
vmc rails-consoleを使うためにはcaldecottが必要だが現在のgemでインストールされるcaldecott(0.0.4)だと、addressableをアンインストールしないとうまく動かない。
しかし、rake assets:precompileにはaddressableが必要でありハマる。
解決策としてはgithubにあるバージョンのcaldecottを使うこと。
例えば下記のようなGemfileを用意する
Gemfile
source :gemcutter
gem 'vmc',:git => "git://github.com/cloudfoundry/vmc.git"
gem 'caldecott',:git => "git://github.com/cloudfoundry/caldecott.git"
どこかのpathにインストールした後
$ bundle exec vmc rails-console app_name
コンソールが立ち上がり本番データをいじることができる。