ruby-on-rails – Rails 3沙盒控制台

在Rails 2中,您可以运行
script/console --sandbox

所以你可以玩生产数据,而不是意外地破坏任何东西.

我似乎找不到Rails 3的等效命令.有没有人知道它是什么?

解决方法

简单,输入:
bundle exec rails c -s

就是这样.

$bundle exec rails c --help
Usage: console [environment] [options]
    -s,--sandbox                    Rollback database modifications on exit.
        --debugger                   Enable ruby-debugging for the console.
        --irb                        DEPRECATED: Invoke `/your/choice/of/ruby script/rails console` instead

这很简单,但有时,如果您不使用bundle exec运行rails可执行文件,则可能导致错误或可能导致错误.为了避免这种情况,总是使用bundle exec.

引用bundler page(如果没有文档):

In some cases,running executables without bundle exec may work,if
the executable happens to be installed in your system and does not
pull in any gems that conflict with your bundle.

However,this is unreliable and is the source of considerable pain. Even if it looks like it works,it may not work in the future or on another machine.

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...