I would like to install gem from the latest GitHub source.
How do I do this?
|
|
|
In case you are using bundler, you need to add something like this to your Gemfile:
And in case there is |
|||||||||||||||||||
|
|
well, that depends on the project in question. Some projects have a *.gemspec file in their root directory. In that case, it would be
Other projects have a rake task, called "gem" or "build" or something like that, in this case you have to invoke "rake ", but that depends on the project. In both cases you have to download the source. |
|||||||||||||
|
|
Try the specific_install gem it allows you you to install a gem from from its github repository (like 'edge'), or from an arbitrary URL. Very usefull for forking gems and hacking on them on multiple machines and such.
|
|||||||
|
|
OBSOLETE (see comments) If the project is from github, and contained in the list on http://gems.github.com/list.html, then you can just add the github repo to the gems sources to install it :
|
|||||||||||||
|
|
On a fresh Linux machine you also neeed to install the git command. The bundle command uses it behind the scenes. |
|||
|
|
|
If you install using bundler as suggested by gryzzly and the gem creates a binary then make sure you run it with |
|||
|
|
|
Also you can do |
|||
|
|