weppos / breadcrumbs_on_rails

A simple Ruby on Rails plugin for creating and managing a breadcrumb navigation.
https://simonecarletti.com/code/breadcrumbs-on-rails
MIT License
942 stars 187 forks source link

Don't build libxslt and libxml on travis. Use what's available #98

Closed jcoyne closed 8 years ago

weppos commented 8 years ago

Please explain the reason of this patch

jcoyne commented 8 years ago

Travis CI has libxslt and libxml already compiled. If you provide this environment variable, then nokogiri will be built using those already compiled libraries. If you don't provide this environment variable, nokogiri will compile those libraries itself, before building nokogiri. This takes a not insignificant amount of time. So this patch speeds up the travis build and is nice to travis because we use less of their computing resources.

weppos commented 8 years ago

Thanks! 👍