Created
August 8, 2012 03:30
-
-
Save bryancusatis/3291809 to your computer and use it in GitHub Desktop.
Bundle Install issue - fatal: not a git repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bundle install | |
Fetching git://github.com/dbackeus/will_paginate.git | |
remote: Counting objects: 3758, done. | |
remote: Compressing objects: 100% (1375/1375), done. | |
remote: Total 3758 (delta 2475), reused 3557 (delta 2321)Receiving objects: 99% (3721/3758) | |
Receiving objects: 100% (3758/3758), 525.70 KiB, done. | |
Resolving deltas: 100% (2475/2475), done. | |
fatal: Not a git repository: ''C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/bundler/gems/will_paginate-0950e1d26e39/.git'' | |
Fetching gem metadata from https://rubygems.org/......... | |
Fetching gem metadata from https://rubygems.org/.. | |
Using rake (0.9.2.2) | |
Using i18n (0.6.0) | |
Using multi_json (1.3.6) | |
Using activesupport (3.2.1) | |
Using builder (3.0.0) | |
Using activemodel (3.2.1) | |
Using erubis (2.7.0) | |
Using journey (1.0.4) | |
Using rack (1.4.1) | |
Using rack-cache (1.2) | |
Using rack-test (0.6.1) | |
Using hike (1.2.1) | |
Using tilt (1.3.3) | |
Using sprockets (2.1.3) | |
Using actionpack (3.2.1) | |
Using mime-types (1.19) | |
Using polyglot (0.3.3) | |
Using treetop (1.4.10) | |
Using mail (2.4.4) | |
Using actionmailer (3.2.1) | |
Using arel (3.0.2) | |
Using tzinfo (0.3.33) | |
Using activerecord (3.2.1) | |
Using activeresource (3.2.1) | |
Using bcrypt-ruby (3.0.1) | |
Using bson (1.6.4) | |
Using bson_ext (1.6.4) | |
Using bundler (1.1.5) | |
Using cancan (1.6.8) | |
Using coffee-script-source (1.3.3) | |
Using execjs (1.4.0) | |
Using coffee-script (2.2.0) | |
Using rack-ssl (1.3.2) | |
Using json (1.7.4) | |
Using rdoc (3.12) | |
Using thor (0.14.6) | |
Using railties (3.2.1) | |
Using coffee-rails (3.2.2) | |
Using orm_adapter (0.4.0) | |
Using warden (1.2.1) | |
Using devise (2.1.2) | |
Using jquery-rails (2.0.2) | |
Using mongo (1.6.4) | |
Using moped (1.2.0) | |
Using origin (1.0.4) | |
Using mongoid (3.0.3) | |
Using rails (3.2.1) | |
Using sass (3.1.20) | |
Using sass-rails (3.2.5) | |
Using sqlite3 (1.3.6) | |
Using tinymce-rails (3.5.6) | |
Using uglifier (1.2.7) | |
Using will_paginate (3.0.3) from git://github.com/dbackeus/will_paginate.git (at master) | |
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem | |
is installed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'rails', '3.2.1' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' | |
gem 'sqlite3' | |
# Gems used only for assets and not required | |
# in production environments by default. | |
group :assets do | |
gem 'sass-rails', '~> 3.2.3' | |
gem 'coffee-rails', '~> 3.2.1' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer' | |
gem 'uglifier', '>= 1.0.3' | |
end | |
gem 'jquery-rails' | |
gem 'mongo' | |
gem 'bson' | |
gem 'bson_ext' | |
gem 'mongoid' | |
gem "devise", ">=2.1.2" | |
gem "cancan" | |
gem "tinymce-rails", "~>3.5.5" | |
gem 'will_paginate', :git => 'git://github.com/dbackeus/will_paginate.git' | |
#gem 'will_paginate', '~> 3.0' | |
# To use ActiveModel has_secure_password | |
# gem 'bcrypt-ruby', '~> 3.0.0' | |
# To use Jbuilder templates for JSON | |
# gem 'jbuilder' | |
# Use unicorn as the web server | |
# gem 'unicorn' | |
# Deploy with Capistrano | |
# gem 'capistrano' | |
# To use debugger | |
# gem 'ruby-debug19', :require => 'ruby-debug' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GIT | |
remote: git://github.com/dbackeus/will_paginate.git | |
revision: 0950e1d26e399e4a8d1807bf438afacb83b28e38 | |
specs: | |
will_paginate (3.0.3) | |
GEM | |
remote: https://rubygems.org/ | |
specs: | |
actionmailer (3.2.1) | |
actionpack (= 3.2.1) | |
mail (~> 2.4.0) | |
actionpack (3.2.1) | |
activemodel (= 3.2.1) | |
activesupport (= 3.2.1) | |
builder (~> 3.0.0) | |
erubis (~> 2.7.0) | |
journey (~> 1.0.1) | |
rack (~> 1.4.0) | |
rack-cache (~> 1.1) | |
rack-test (~> 0.6.1) | |
sprockets (~> 2.1.2) | |
activemodel (3.2.1) | |
activesupport (= 3.2.1) | |
builder (~> 3.0.0) | |
activerecord (3.2.1) | |
activemodel (= 3.2.1) | |
activesupport (= 3.2.1) | |
arel (~> 3.0.0) | |
tzinfo (~> 0.3.29) | |
activeresource (3.2.1) | |
activemodel (= 3.2.1) | |
activesupport (= 3.2.1) | |
activesupport (3.2.1) | |
i18n (~> 0.6) | |
multi_json (~> 1.0) | |
arel (3.0.2) | |
bcrypt-ruby (3.0.1-x86-mingw32) | |
bson (1.6.4) | |
bson_ext (1.6.4) | |
bson (~> 1.6.4) | |
builder (3.0.0) | |
cancan (1.6.8) | |
coffee-rails (3.2.2) | |
coffee-script (>= 2.2.0) | |
railties (~> 3.2.0) | |
coffee-script (2.2.0) | |
coffee-script-source | |
execjs | |
coffee-script-source (1.3.3) | |
devise (2.1.2) | |
bcrypt-ruby (~> 3.0) | |
orm_adapter (~> 0.1) | |
railties (~> 3.1) | |
warden (~> 1.2.1) | |
erubis (2.7.0) | |
execjs (1.4.0) | |
multi_json (~> 1.0) | |
hike (1.2.1) | |
i18n (0.6.0) | |
journey (1.0.4) | |
jquery-rails (2.0.2) | |
railties (>= 3.2.0, < 5.0) | |
thor (~> 0.14) | |
json (1.7.4) | |
mail (2.4.4) | |
i18n (>= 0.4.0) | |
mime-types (~> 1.16) | |
treetop (~> 1.4.8) | |
mime-types (1.19) | |
mongo (1.6.4) | |
bson (~> 1.6.4) | |
mongoid (3.0.3) | |
activemodel (~> 3.1) | |
moped (~> 1.1) | |
origin (~> 1.0) | |
tzinfo (~> 0.3.22) | |
moped (1.2.0) | |
multi_json (1.3.6) | |
origin (1.0.4) | |
orm_adapter (0.4.0) | |
polyglot (0.3.3) | |
rack (1.4.1) | |
rack-cache (1.2) | |
rack (>= 0.4) | |
rack-ssl (1.3.2) | |
rack | |
rack-test (0.6.1) | |
rack (>= 1.0) | |
rails (3.2.1) | |
actionmailer (= 3.2.1) | |
actionpack (= 3.2.1) | |
activerecord (= 3.2.1) | |
activeresource (= 3.2.1) | |
activesupport (= 3.2.1) | |
bundler (~> 1.0) | |
railties (= 3.2.1) | |
railties (3.2.1) | |
actionpack (= 3.2.1) | |
activesupport (= 3.2.1) | |
rack-ssl (~> 1.3.2) | |
rake (>= 0.8.7) | |
rdoc (~> 3.4) | |
thor (~> 0.14.6) | |
rake (0.9.2.2) | |
rdoc (3.12) | |
json (~> 1.4) | |
sass (3.1.20) | |
sass-rails (3.2.5) | |
railties (~> 3.2.0) | |
sass (>= 3.1.10) | |
tilt (~> 1.3) | |
sprockets (2.1.3) | |
hike (~> 1.2) | |
rack (~> 1.0) | |
tilt (~> 1.1, != 1.3.0) | |
sqlite3 (1.3.6-x86-mingw32) | |
thor (0.14.6) | |
tilt (1.3.3) | |
tinymce-rails (3.5.6) | |
railties (>= 3.1.1) | |
treetop (1.4.10) | |
polyglot | |
polyglot (>= 0.3.1) | |
tzinfo (0.3.33) | |
uglifier (1.2.7) | |
execjs (>= 0.3.0) | |
multi_json (~> 1.3) | |
warden (1.2.1) | |
rack (>= 1.0) | |
PLATFORMS | |
x86-mingw32 | |
DEPENDENCIES | |
bson | |
bson_ext | |
cancan | |
coffee-rails (~> 3.2.1) | |
devise (>= 2.1.2) | |
jquery-rails | |
mongo | |
mongoid | |
rails (= 3.2.1) | |
sass-rails (~> 3.2.3) | |
sqlite3 | |
tinymce-rails (~> 3.5.5) | |
uglifier (>= 1.0.3) | |
will_paginate! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\>bundle -v | |
Bundler version 1.1.5 | |
C:\>ruby -v | |
ruby 1.9.3p125 (2012-02-16) [i386-mingw32] | |
C:\>gem -v | |
1.8.16 | |
no rvm, no rubygems-bundler, no open_gem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment