Merge pull request #3623 from chrisfinazzo/ci-docs
Merge pull request 3623
This commit is contained in:
commit
12b16dde52
|
@ -155,13 +155,12 @@ which it must compile each time it is installed. Luckily, you can
|
||||||
dramatically decrease the install time of Nokogiri by setting the
|
dramatically decrease the install time of Nokogiri by setting the
|
||||||
environment variable `NOKOGIRI_USE_SYSTEM_LIBRARIES` to `true`.
|
environment variable `NOKOGIRI_USE_SYSTEM_LIBRARIES` to `true`.
|
||||||
|
|
||||||
## 4. Gotchas
|
<div class="note warning">
|
||||||
|
<h5>Be sure to exclude <code>vendor</code> from your
|
||||||
### Exclude `vendor`
|
<code>_config.yml</code></h5>
|
||||||
|
<p>Travis bundles all gems in the <code>vendor</code> directory on its build
|
||||||
Travis bundles all gems in the `vendor` directory on its build servers,
|
servers, which Jekyll will mistakenly read and explode on.</p>
|
||||||
which Jekyll will mistakenly read and explode on. To avoid this, exclude
|
</div>
|
||||||
`vendor` in your `_config.yml`:
|
|
||||||
|
|
||||||
{% highlight yaml %}
|
{% highlight yaml %}
|
||||||
exclude: [vendor]
|
exclude: [vendor]
|
||||||
|
|
Loading…
Reference in New Issue