Eu vejo muito esses erros:
WARNING: Nokogiri was built against LibXML version 2.9.1, but has dynamically loaded 2.8.0
Veja como corrigi-los:
# Mercilessly nuke every Nokogiri version
$ gem uninstall nokogiri --all --force --executables
# These arguments will be passed to `gem install nokogiri`
$ bundle config build.nokogiri -- --with-xml2-include=`brew --prefix libxml2`/include/libxml2 --with-xml2-lib=`brew --prefix libxml2`/lib --with-xslt-dir=`brew --prefix libxslt`
# Reinstall
$ bundle install
Você precisará fazer isso sempre que instalar uma nova versão do libxml
.