zshでpre-commitを導入する際の注意点
2821 ワード
はじめに
個人開発でpre-commitを導入したのですが、zshに切り替えてからというものの、
Could not find nokogiri-1.8.5 in any of the sources
Run `bundle install` to install missing gems.
というエラーに悩まされたので、解決方法を記します。
解決方法
git configに設定を追加
$ git config pre-commit.ruby "bundle exec ruby"
まずはpre-commit
の公式サイトに基づいて、上記のコマンドを実行する。
libxml2をbrewでいれ、シンボリックリンクを削除
$ brew install libxml2
$ brew unlink libxml2
1.1. libxml2とは
libxml2とは、XMLを解析・操作するC言語のライブラリです。
xmlsoft(http://www.xmlsoft.org/)で配布されています。
rbenvの再設定
$ rbenv exec gem install bundler
$ rbenv rehash
$ bundle install
bundlerの再設定
$ bundle config build.nokogiri --use-system-libraries
今回のキモはここで、systemのlibrariesにあるnokogiriを使うように指定してあげれば良かったようですね。
参考サイト
Author And Source
この問題について(zshでpre-commitを導入する際の注意点), 我々は、より多くの情報をここで見つけました https://qiita.com/yuta-ushijima/items/4b5a686669d62244c759著者帰属:元の著者の情報は、元の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 .