ドキュメントやSOでは見つかりませんでしたが、heroku(Celadon Cedar)のサンドボックスモードでRails(3.2.x)コンソールを実行する方法があります。より多くの「Herokuの道」の代替についてはRailsコンソールをherokuでサンドボックスモードで実行しています
rails console --sandbox
ドキュメントやSOでは見つかりませんでしたが、heroku(Celadon Cedar)のサンドボックスモードでRails(3.2.x)コンソールを実行する方法があります。より多くの「Herokuの道」の代替についてはRailsコンソールをherokuでサンドボックスモードで実行しています
rails console --sandbox
に相当、heroku run console --sandbox
は同様のトリックん:私は、引用符heroku run "rails console --sandbox"
または短いheroku run "rails c -s"
を追加することにより、サンドボックス内で実行するように
$ heroku run console --sandbox
Running `console --sandbox` attached to terminal... up, run.6024
[...]
Loading production environment in sandbox (Rails 3.2.12)
Any modifications you make will be rolled back on exit
irb(main):001:0>
管理。
'heroku run rails console --sandbox'も動作します。 – evanrmurphy