当我尝试在我的Gemfile中运行bundle install
gem 'activeadmin', github: 'gregbell/active_admin'
我明白了:
获取git://github.com/gregbell/active_admin.git 由于错误(2/3)重试源提取:您需要安装git才能 使用来自git存储库的gem。有关安装git的帮助,请参阅GitHub' 在https://help.github.com/articles/set-up-git
的教程
但是我已经安装了git,而且我还可以运行git commit,git pull和其他命令。
我在Windows 8上,使用RoR 4
答案 0 :(得分:0)
有两种方法可以访问github,通过git://和http://你可以尝试通过http://
我在Gemfile中有这一行,你可以根据自己的需要调整它:
gem 'activeadmin-mongoid', :git => 'https://github.com/piousbox/activeadmin-mongoid.git', :branch => 'fix_sidebar_disable'
所以对你来说可能
gem 'activeadmin', :git => 'https://github.com/gregbell/active_admin.git'
另外,我假设你确实安装了git?因为错误说,安装git; )
sudo apt-get install git
如果您使用的是ubuntu,或
brew install git
。