Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my gemfile I have this:

gem "authlogic", :git => "git://github.com/odorcicd/authlogic.git", :branch => "rails3"

How do I install that as a gem so I can test it?

share|improve this question

3 Answers

up vote 23 down vote accepted
  1. Clone the Git repository.

    $ git clone git://github.com/odorcicd/authlogic.git
    
  2. Change to the new directory.

    cd authlogic
    
  3. Checkout branch

    $ git checkout -b rails3 remotes/origin/rails3
    
  4. Build the gem.

    $ rake build gem
    
  5. Install the gem.

    $ gem install pkg/gemname-1.23.gem
    
share|improve this answer
8  
I needed to change 4. to "rake build" to build the gem. – raphael_turtle Oct 19 '10 at 15:18
1  
Instead of 4. I had to use gem build name-of-file.gemspec to build the gem rake build o rake gem did not work for me – marimaf Nov 17 '11 at 17:02
1  
Instead of 4 and 5 you can do "rake install" – drinor Mar 12 at 23:06

You don't need to build the gem locally. In your gemfile you can specify a github source with a ref, branch or tag.

gem 'rails, :git => "git://github.com/rails/rails.git", :ref => "4aded"
gem 'rails, :git => "git://github.com/rails/rails.git", :branch => "2-3-stable"
gem 'rails, :git => "git://github.com/rails/rails.git", :tag => "v2.3.5"

Then you run bundle install or the short form is just bundle.

Read more about it here: http://gembundler.com/git.html

share|improve this answer

Assuming you're a Bundler user,

$ bundle install

will install the gems listed in your Gemfile. (And if you're not a Bundler user, why do you have a Gemfile?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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