bundle exec irb vs bundle exec rails console

时间:2016-11-18 00:54:34

标签: ruby-on-rails ruby rubygems bundler

link很棒。

然而,我有一个问题,我无法弄明白。我在我的Gemfile中设置了一些宝石,这些宝石似乎无法识别。

当我导航到我的rails应用程序并运行这两个命令时,它们会给我意想不到的结果。

bundle exec irb
$:

bundle exec rails c
$:

给出不同的结果。前者提供更多路径(包括宝石路径),后者更少。我认为应该是另一种方式。

具体来说,bundle exec irb加载了我Gemfile中的所有宝石。但bundle exec rails c仅从Gemfile加载一些宝石。

如何让rails从我的rails应用程序的Gemfile加载所有宝石?

0 个答案:

没有答案