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?
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?
Clone the Git repository.
$ git clone git://github.com/odorcicd/authlogic.git
Change to the new directory.
cd authlogic
Checkout branch
$ git checkout -b rails3 remotes/origin/rails3
Build the gem.
$ rake gem
Install the gem.
$ gem install pkg/gemname-1.23.gem