feedback on jekyll#3671

This commit is contained in:
Falko Richter 2015-04-24 10:28:40 +02:00
parent 76c1dcc791
commit 159dbd0170
1 changed files with 10 additions and 9 deletions

View File

@ -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
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 %}
language: ruby
rvm:
@ -89,15 +99,6 @@ env:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
{% 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:
{% highlight yaml %}