我试着把台风也包括进来,比如:
require 'typhoeus'但我在日志文件中看到:
/dependencies.rb:229:in `require': No such file to load -- typhoeus (LoadError)我把它包含在gem文件中,我不知道我做错了什么
发布于 2015-06-20 02:15:03
在rails项目中使用bundler安装gem是很常见的。bundle命令安装Gemfile中添加的gem。
然后,如果您使用bundler在项目上安装,并安装typhoeus gem,则不需要添加所需的'typhoeus‘。
https://stackoverflow.com/questions/23083459
复制相似问题