`bundle install` fails (because of git protocol)

前端 未结 1 400
半阙折子戏
半阙折子戏 2021-01-13 18:13

With this simple Gemfile,

source \'https://rubygems.org\'
gem \'activerecord\', \"~> 2.2.3\"
gem \'activerecord-sqlserver-adapter\', github: \'arthrex/ac         


        
1条回答
  •  礼貌的吻别
    2021-01-13 18:50

    Don't use the github: short form in your Gemfile, just use the regular git: syntax

    gem 'activerecord-sqlserver-adapter', git: 'http://github.com/arthrex/activerecord-sqlserver-adapter.git'
    

    0 讨论(0)
提交回复
热议问题