privateなGithubレポジトリをbundle installする
結論
personal access tokenで作ってbundler config
に加えます。
やりかた
Gemfileには形式はgit
でプロトコルはhttps
を指定します。
(github
形式だとgit
プロトコルになってしまったので、その対応です)
Gemfile
gem 'private', git: 'https://github.com/myoan/private.git'
Githubでpersonal access tokenを作ります。
(tokenをどこかにメモしてください。)
bundle config
でbundlerに設定を加えます。
-> % bundle config https://github.com/myoan/private.git myoan:<PERSONAL_ACCESS_TOKEN>
-> % cat ~/.bundle/config
---
BUNDLE_BUILD__NOKOGIRI: "--use-system-libraries"
BUNDLE_BUILD__MYSQL2: "--local --with-opt-lib=/usr/local/opt/openssl/lib --with-opt-include=-I/usr/local/opt/openssl/include"
BUNDLE_HTTPS://GITHUB__COM/MYOAN/PRIVATES__GIT/: "myoan:<PERSONAL_ACCESS_TOKEN>"
この状態でbundle installを実行。
うまくいったら成功です!
参照
Author And Source
この問題について(privateなGithubレポジトリをbundle installする), 我々は、より多くの情報をここで見つけました https://qiita.com/yoan/items/7082888afff8c2eca10a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .