On GitHub, I made a fork of a gem adammck-rubygsm. My fork is here https://github.com/khwang1/rubygsm.
I want to switch my application from the original to my forked gem. So, in Gemfile I changed the line
gem 'adammck-rubygsm'
to
gem 'adammck-rubygsm', :git => "git://github.com/khwang1/rubygsm.git"
When I run "bundle install", I get the following failure
$ bundle install
Updating git://github.com/khwang1/rubygsm.git
Fetching source index for http://rubygems.org/
Could not find gem 'adammck-rubygsm (>= 0)' in git://github.com/khwang1/rubygsm.git (at master).
Source does not contain any versions of 'adammck-rubygsm (>= 0)'
Any ideas why?
The git
directive has to be specified with https, as in:
gem 'resque', :require => "resque/server", git: 'https://github.com/defunkt/resque.git'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With