Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

installing gem from a github fork

I have installed a mongify gem from original source: https://github.com/anlek/mongify

then I want to install a newer version from a fork (has not been accepted yet for pull by original source, but it has an update that i need),

link to the fork: https://github.com/yuvalkarmi/mongify

what should I do to update mongify in my device from the fork (not from the original source)?

Thanks

like image 812
doltiana Avatar asked Mar 08 '23 10:03

doltiana


1 Answers

Just set the source as the url to the fork. There are quite a few ways to do this:

If you are using bundler:

gem 'mongify', :git => 'https://github.com/yuvalkarmi/mongify'

Or:

gem install mongify -s https://github.com/yuvalkarmi/mongify
like image 198
slal Avatar answered Mar 19 '23 20:03

slal