Bundler找不到win32-service gem,甚至认为它出现在gem列表中

时间:2010-09-08 20:41:45

标签: ruby-on-rails rubygems bundler

我正在尝试在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)并遇到同样的问题。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

source:rubygems 添加到Gemfile的顶部。