我在本地为我的Rails应用程序运行瘦服务器。每次启动它时,我都会收到以下消息:
Warning: Running `gem pristine --all` to regenerate your installed gemspecs (and deleting then reinstalling your bundle if you use bundle --path) will improve the startup performance of Spring.
即使在我运行命令'gem pristine -all‘之后,服务器也需要很长时间才能重新启动,然后该消息再次出现。为什么会这样呢?
发布于 2015-12-01 07:56:35
用gem update --system
去掉这条消息对我来说很有效。
发布于 2015-04-28 09:27:24
我也有同样的问题。查看gem pristine --all
的输出,我看到有几个gem被跳过,并显示如下消息
Skipped bigdecimal-1.1.0, it is bundled with old Ruby
我手动重新安装了这些get以删除该消息。
gem uninstall bigdecimal
gem install bigdecimal
https://stackoverflow.com/questions/28734847
复制相似问题