aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.travis.yml14
-rw-r--r--Gemfile11
2 files changed, 25 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..2579a6b
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,14 @@
+language: ruby
+rvm:
+- 2.3.3
+
+script:
+ - set -e # halt script on error
+ - bundle exec jekyll build
+ - bundle exec htmlproofer ./_site
+
+env:
+ global:
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
+
+sudo: false
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..c9cb3bb
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,11 @@
+source "https://rubygems.org"
+ruby RUBY_VERSION
+
+# This is the gem used to use GitHub's defaults
+gem 'github-pages', group: :jekyll_plugins
+
+# This is the gem used to test the output html
+gem "html-proofer"
+
+# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
+gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]