Last active
February 10, 2016 19:05
-
-
Save ronny/5035800 to your computer and use it in GitHub Desktop.
Nokogiri with libxml2 installed via homebrew -- should fix "WARNING: Nokogiri was built against LibXML version 2.7.8, but has dynamically loaded 2.9.0"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install libxml2 libxslt libiconv | |
brew link --force libxml2 libxslt libiconv | |
gem install nokogiri -v 1.6.2 -- --use-system-libraries | |
brew unlink libiconv libxml2 libxslt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This solution worked for me (on May 24, 2013):
https://coderwall.com/p/o5ewia