-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for jenkyll build automation
* Add Travis-CI config file * Add Rakefile * Update _config.yaml file * Update CNAME
- Loading branch information
Showing
5 changed files
with
62 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
sudo: false | ||
language: ruby | ||
cache: bundler | ||
rvm: | ||
- 2.1 | ||
|
||
install: gem install jekyll jekyll-paginate jemoji html-proofer | ||
script: JEKYLL_ENV=production jekyll serve --baseurl "" --detach && htmlproof ./_site --disable-external --empty-alt-ignore | ||
|
||
- 2.1.1 | ||
install: bundle install | ||
script: bundle exec rake site:deploy --trace | ||
branches: | ||
only: | ||
- master | ||
env: | ||
global: | ||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true | ||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true | ||
- JEKYLL_ENV=production |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
source "https://rubygems.org" | ||
|
||
require "json" | ||
require "open-uri" | ||
versions = JSON.parse(open("https://pages.github.com/versions.json").read) | ||
ruby versions["ruby"] | ||
|
||
gem "github-pages", versions["github-pages"] | ||
gem "rake", "~> 10.1.1" | ||
gem 'compass' | ||
gem 'sass-media_query_combiner' | ||
gem 'autoprefixer-rails' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters