在我的gemfile中我有这个:
gem "authlogic", :git => "git://github.com/odorcicd/authlogic.git", :branch => "rails3"
如何安装它作为宝石,以便我可以测试它?
您不需要在本地构建gem.在gem文件中,您可以使用ref,branch或tag指定github源.
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"
然后你运行bundle install
或简短形式bundle
.
在这里阅读更多相关信息:http://bundler.io/man/gemfile.5.html#GIT
更新:有一个github源标识符.
gem 'country_select', github: 'stefanpenner/country_select'
但是,他们警告不要使用它: NOTE: This shorthand should be avoided until Bundler 2.0, since it currently expands to an insecure git:// URL. This allows a man-in-the-middle attacker to compromise your system.
克隆Git存储库.
$ git clone git://github.com/odorcicd/authlogic.git
切换到新目录.
cd authlogic
结帐分支
$ git checkout -b rails3 remotes/origin/rails3
建立宝石.
$ rake build gem
安装宝石.
$ gem install pkg/gemname-1.23.gem
我必须修改@janic_的答案才能使其正常工作。希望它将对像我这样的其他红宝石新手有所帮助。
克隆Git存储库。
$ git clone git://github.com/odorcicd/authlogic.git
转到新目录。
$ cd authlogic
结帐分支
$ git checkout -b rails3 remotes/origin/rails3
安装捆绑
$ bundle install
建立宝石。
$ rake build
安装宝石。
$ gem install pkg/gemname-1.23.gem