Skip to content

Commit

Permalink
Merge pull request #5 from RACCommunity/setup-travis
Browse files Browse the repository at this point in the history
Setup travis
  • Loading branch information
Palleas committed May 25, 2016
2 parents 93e29c8 + bea5525 commit 8508911
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 27 deletions.
12 changes: 12 additions & 0 deletions .travis.yml
@@ -0,0 +1,12 @@
# https://jekyllrb.com/docs/continuous-integration/
language: ruby
rvm:
- 2.1

script: ./script/cibuild

env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true

sudo: false
1 change: 1 addition & 0 deletions Gemfile
@@ -1,3 +1,4 @@
source "https://rubygems.org"

gem 'jekyll', '~> 3.1', '>= 3.1.3'
gem 'html-proofer', '~> 3.0', '>= 3.0.6'
33 changes: 33 additions & 0 deletions Gemfile.lock
@@ -1,8 +1,28 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (4.2.6)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.4.0)
colorator (0.1)
colored (1.2)
ethon (0.9.0)
ffi (>= 1.3.0)
ffi (1.9.10)
html-proofer (3.0.6)
activesupport (~> 4.2)
addressable (~> 2.3)
colored (~> 1.2)
mercenary (~> 0.3.2)
nokogiri (~> 1.5)
parallel (~> 1.3)
typhoeus (~> 0.7)
yell (~> 2.0)
i18n (0.7.0)
jekyll (3.1.3)
colorator (~> 0.1)
jekyll-sass-converter (~> 1.0)
Expand All @@ -16,23 +36,36 @@ GEM
sass (~> 3.4)
jekyll-watch (1.4.0)
listen (~> 3.0, < 3.1)
json (1.8.3)
kramdown (1.11.1)
liquid (3.0.6)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
mercenary (0.3.6)
mini_portile2 (2.0.0)
minitest (5.9.0)
nokogiri (1.6.7.2)
mini_portile2 (~> 2.0.0.rc2)
parallel (1.8.0)
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
rouge (1.10.1)
safe_yaml (1.0.4)
sass (3.4.22)
thread_safe (0.3.5)
typhoeus (0.8.0)
ethon (>= 0.8.0)
tzinfo (1.2.2)
thread_safe (~> 0.1)
yell (2.0.6)

PLATFORMS
ruby

DEPENDENCIES
html-proofer (~> 3.0, >= 3.0.6)
jekyll (~> 3.1, >= 3.1.3)

BUNDLED WITH
Expand Down
2 changes: 2 additions & 0 deletions _config.yml
Expand Up @@ -19,3 +19,5 @@ github_username: ReactiveCocoa

# Build settings
markdown: kramdown
exclude:
- vendor
4 changes: 2 additions & 2 deletions _includes/header.html
@@ -1,11 +1,11 @@
<header class="site-header">
<header id="top" class="site-header">

<div class="wrapper">

<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>

<nav class="site-nav">
<a href="#" class="menu-icon">
<a href="#top" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
Expand Down
25 changes: 0 additions & 25 deletions _posts/2016-05-18-welcome-to-jekyll.markdown

This file was deleted.

5 changes: 5 additions & 0 deletions script/cibuild
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -e # halt script on error

bundle exec jekyll build -d ./_site/racurated
bundle exec htmlproofer ./_site

0 comments on commit 8508911

Please sign in to comment.