【发布时间】:2013-03-09 18:34:21
【问题描述】:
在文档和 SO 上都找不到它,但是有没有办法在 heroku (Celadon Cedar) 上以沙盒模式运行 Rails (3.2.x) 控制台,相当于
rails console --sandbox
【问题讨论】:
标签: ruby-on-rails heroku console
在文档和 SO 上都找不到它,但是有没有办法在 heroku (Celadon Cedar) 上以沙盒模式运行 Rails (3.2.x) 控制台,相当于
rails console --sandbox
【问题讨论】:
标签: ruby-on-rails heroku console
对于更“Heroku 方式”的替代方案,heroku run console --sandbox 也可以做到这一点:
$ 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>
【讨论】: