我正在尝试在2.3.4
Rails
应用中使用bundler并遇到win32-service
gem的问题。通过发布gem install win32-service --platform mswin32
来安装gem。我把它安装在bundler之外,因为Bundler总是试图从源代码中进行编译,这很糟糕。
gem list
win32-service (0.7.1 x86-mswin32-60)
bundle install
Your Gemfile doesn't have any sources. You can add one with a line like 'source :gemcutter'
Could not find gem 'win32-service (>= 0, runtime)' in any of the gem sources.
我尝试使用source:gemcutter但是如上所述,bundler尝试使用不构建的源包。
我也尝试使用旧版本的gem(0.5.1
)并遇到同样的问题。
有什么想法吗?
答案 0 :(得分:0)
将 source:rubygems 添加到Gemfile的顶部。