feedback on jekyll#3671
This commit is contained in:
parent
76c1dcc791
commit
159dbd0170
|
@ -72,6 +72,16 @@ with Ruby and requires RubyGems to install, we use the Ruby language build
|
||||||
environment. Below is a sample `.travis.yml` file, followed by
|
environment. Below is a sample `.travis.yml` file, followed by
|
||||||
an explanation of each line.
|
an explanation of each line.
|
||||||
|
|
||||||
|
**Note:** You will need a Gemfile as well, [Travis will automatically install](http://docs.travis-ci.com/user/languages/ruby/#Dependency-Management) the dependencies based on the referenced gems:
|
||||||
|
|
||||||
|
{% highlight ruby %}
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "jekyll"
|
||||||
|
gem "html-proofer"
|
||||||
|
{% endhighlight %}
|
||||||
|
|
||||||
|
|
||||||
{% highlight yaml %}
|
{% highlight yaml %}
|
||||||
language: ruby
|
language: ruby
|
||||||
rvm:
|
rvm:
|
||||||
|
@ -89,15 +99,6 @@ env:
|
||||||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
**Note:** You will need this Gemfile as well, [Travis will automatically install](http://docs.travis-ci.com/user/languages/ruby/#Dependency-Management) the dependencies based on the gerefenced gems:
|
|
||||||
|
|
||||||
{% highlight ruby %}
|
|
||||||
source "https://rubygems.org"
|
|
||||||
|
|
||||||
gem "jekyll"
|
|
||||||
gem "html-proofer"
|
|
||||||
{% endhighlight %}
|
|
||||||
|
|
||||||
Ok, now for an explanation of each line:
|
Ok, now for an explanation of each line:
|
||||||
|
|
||||||
{% highlight yaml %}
|
{% highlight yaml %}
|
||||||
|
|
Loading…
Reference in New Issue