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

前端之家收集整理的这篇文章主要介绍了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.

原文链接:https://www.f2er.com/ruby/273908.html

猜你在找的Ruby相关文章