Ruby on rails 如何在我的文件中启用详细标志

Ruby on rails 如何在我的文件中启用详细标志,ruby-on-rails,rubygems,gem,Ruby On Rails,Rubygems,Gem,如何在文件中启用详细标志,以便在构建本机扩展时准确跟踪发生的情况。因为安装通常需要很长时间 gem install libv8 Fetching: libv8-3.11.8.11.gem (100%) Building native extensions. This could take a while... 你应使用: gem install --verbose libv8 通过捆绑 bundle install --verbose 当我通过bundler安装它时,我该怎么做。不在命令

如何在文件中启用详细标志,以便在构建本机扩展时准确跟踪发生的情况。因为安装通常需要很长时间

gem install libv8
Fetching: libv8-3.11.8.11.gem (100%)
Building native extensions.  This could take a while...
你应使用:

gem install --verbose libv8
通过捆绑

bundle install --verbose

当我通过bundler安装它时,我该怎么做。不在命令行上。