From 76c1dcc79123e73c6d43e28bb9cbf4d9410f198d Mon Sep 17 00:00:00 2001 From: Falko Richter Date: Tue, 21 Apr 2015 10:45:41 +0200 Subject: [PATCH 1/2] added a mention on the Gemfile to complete the instructions travis relies on a Gemfile tp be present. --- site/_docs/continuous-integration.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/site/_docs/continuous-integration.md b/site/_docs/continuous-integration.md index 1df22b5f..ad2c62d0 100644 --- a/site/_docs/continuous-integration.md +++ b/site/_docs/continuous-integration.md @@ -89,6 +89,15 @@ 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 %} From 159dbd01705cc7d5d22bdb8a034688939736124b Mon Sep 17 00:00:00 2001 From: Falko Richter Date: Fri, 24 Apr 2015 10:28:40 +0200 Subject: [PATCH 2/2] feedback on jekyll#3671 --- site/_docs/continuous-integration.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/site/_docs/continuous-integration.md b/site/_docs/continuous-integration.md index ad2c62d0..a7ee7b8b 100644 --- a/site/_docs/continuous-integration.md +++ b/site/_docs/continuous-integration.md @@ -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 %}