我正在使用RubyMine并尝试首次设置解决方案。
当我打开项目时,它说
RubyMine Gem Manager
RubyMine has detected that
some of the gems required for 'features'
are not installed
Install missing gems
(show balloon)
当我尝试安装它时,它会搜索gem存储库'然后弹出一个错误:
Following gems were not installed:
mauth-client: No Gem satisfying dependency found in remote gem repositories
事情是,从一开始就没有意义。如果我输入'捆绑show mauth-client'从我在RubyMine中打开的同一目录中,它给出了/ gemler / gems文件夹中此gem所在位置的位置。
为什么会出现此错误,如何解决?
由于
答案 0 :(得分:0)
在默认的宝石源RubyGems.org中找不到宝石。我做了一个快速的谷歌搜索,我无法找到mauth-client
宝石,所以它很可能是在私人宝石库中。
如果您最终找到了宝石源,请在Gemfile的顶部添加这样的一行:
source 'https://rubygems.org'
显然,将https://rubygems.org替换为您的gem存储库的URL。