Skip to content

Instantly share code, notes, and snippets.

@will-s-owen
Created May 31, 2011 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save will-s-owen/1001422 to your computer and use it in GitHub Desktop.
Save will-s-owen/1001422 to your computer and use it in GitHub Desktop.
Bundle Install failure of repos
source 'http://rubygems.org'
gemspec
gem 'sqlite3'
group :development do
gem 'jeweler'
end
group :test do
gem 'rails', '3.1.0.rc1'
gem 'arel', '~> 2.1.0'
gem "rack", '1.3.0.beta2'
gem 'authlogic', :git => 'https://github.com/bborn/authlogic.git'
gem 'calendar_date_select', :git => 'https://github.com/paneq/calendar_date_select.git', :branch => 'rails3test'
gem 'omniauth', :git => 'https://github.com/intridea/omniauth.git'
gem 'meta_search', :git => 'https://github.com/ernie/meta_search.git'
gem 'simplecov'
end
$ bundle install
Fetching https://github.com/bborn/authlogic.git
fatal: I don't handle protocol ''https'
Git error: command `git clone 'https://github.com/bborn/authlogic.git' "c:/Ruby192/lib/ruby/gems/1.9.1/cache/bundler/git/authlogic-d886115472ee6d482cf48f3e903527ef78df0048" --bare --no-hardlinks` in directory c:/Ruby192/apps/communityengine has failed.
Bundler version 1.0.14
ruby 1.9.2p180 (2011-02-18) [i386-mingw32]
$ gem -v
1.8.4
Works fine from command line:
$ git clone 'https://github.com/bborn/authlogic.git' "c:/Ruby192/lib/ruby/gems/
1.9.1/cache/bundler/git/authlogic-d886115472ee6d482cf48f3e903527ef78df0048" --b
are --no-hardlinks
Cloning into bare repository c:/Ruby192/lib/ruby/gems/1.9.1/cache/bundler/git/au
thlogic-d886115472ee6d482cf48f3e903527ef78df0048...
remote: Counting objects: 3846, done.
remote: Compressing objects: 100% (1456/1456), done.
remote: Total 3846 (delta 2532), reused 3454 (delta 2265)
Receiving objects: 100% (3846/3846), 590.96 KiB | 811 KiB/s, done.
Resolving deltas: 100% (2532/2532), done.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment