I know this is probably kind of noob question, but I never tried this before and I'm not sure how to do this.

So when I installed my gem with gem utility it installed too old version. I want latest version, that is on GitHub.

I could just download source, but I want to be able to load with gem in my Ruby code.

Any ideas?

link|improve this question

73% accept rate
feedback

5 Answers

up vote 18 down vote accepted

In case you are using bundler, you need to add something like this to your Gemfile:

gem 'redcarpet', :git => 'git://github.com/tanoku/redcarpet.git'

And in case there is .gemspec file, it should be able to fetch and install the gem when running bundle install.

link|improve this answer
feedback

well, that depends on the project in question. Some projects have a *.gemspec file in their root directory. In that case, it would be

gem build GEMNAME.gemspec
gem install gemname-version.gem

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.

link|improve this answer
Thanks that helps a lot. – Vojto Apr 6 '10 at 10:04
Thanks - perfect answer. – Jon Schoning May 4 at 5:08
1  
Just a tip to let people know what it's really happening. The gemname-version.gem file is created when invoking gem build – cram1010 May 14 at 10:42
feedback

Read this post > http://raflabs.com/blogs/silence-is-foo/2010/07/19/installing-a-gem-fork-from-github-source/

link|improve this answer
3  
Should quote or explain more than just providing a link. See meta.stackoverflow.com/questions/7656/… – toolbear Aug 31 '11 at 21:02
feedback

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 :

$ gem sources -a http://gems.github.com
$ sudo gem install username-projectname
link|improve this answer
1  
GitHub no longer hosts gems, so this doesn't work anymore. – nickh Feb 29 at 23:55
feedback

If you install using bundler as suggested by gryzzly and the gem creates a binary then make sure you run it with bundle exec mygembinary as the gem is stored in a bundler directory which is not visible on the normal gem path.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.