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?
|
|
|
|||||||||||||
|
|
You don't need to build the gem locally. In your gemfile you can specify a github source with a ref, branch or tag.
Then you run Read more about it here: http://gembundler.com/git.html |
||||
|
|
|
Assuming you're a Bundler user,
will install the gems listed in your Gemfile. (And if you're not a Bundler user, why do you have a Gemfile? |
|||
|
|