0

我正在尝试在应用程序中使用捆绑2.3.4 Rails程序并且遇到win32-servicegem 问题。gem 是通过发出gem install win32-service --platform mswin32. 我将它安装在 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 但如上所述捆绑器尝试使用未构建的源包。

我也尝试过使用旧版本的 gem ( 0.5.1) 并且遇到了同样的问题。

有任何想法吗?

4

1 回答 1

0

source :rubygems添加到 Gemfile 的顶部。

于 2010-11-11T13:49:55.047 回答