-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new light version - removing gemfile.lock
new light version - adding travis file new light version - adding branch to travis file new light version - updating travis configs new light version - removing travis extra file new light version - removing extra configs new light version - readding travis file new light version - updating readme new light version - adding rakefile new light version - updating config.yml new light version - updating travis fixing travis updating gemfile removing jekyll-admin from build fixing html-proofeer adding jekyll admin jekyll-admin as group removing jekyll admin
- Loading branch information
1 parent
b4e9ec2
commit 1657da4
Showing
9 changed files
with
51 additions
and
189 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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
_site | ||
.sass-cache | ||
.npm-debug.log | ||
.lock | ||
Gemfile.lock |
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,17 @@ | ||
language: ruby | ||
rvm: | ||
- 2.1 | ||
|
||
before_script: | ||
- chmod +x travis.sh | ||
|
||
script: ./travis.sh | ||
|
||
env: | ||
global: | ||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true | ||
|
||
branches: | ||
only: | ||
- gh-pages | ||
- develop |
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
require 'html/proofer' | ||
|
||
# rake test | ||
desc "build and test website" | ||
|
||
task :test do | ||
sh "bundle exec jekyll build" | ||
HTML::Proofer.new("_site", {:href_ignore=> ['http://localhost:4000'], :verbose => true}).run | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
"name": "indigo", | ||
"version": "1.0.0", | ||
"homepage": "https://github.com/sergiokopplin/indigo#readme", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/sergiokopplin/indigo/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/sergiokopplin/indigo.git" | ||
}, | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/sergiokopplin/indigo/issues" | ||
}, | ||
"homepage": "https://github.com/sergiokopplin/indigo#readme", | ||
"scripts": { | ||
"build": "bundle exec jekyll build", | ||
"serve": "bundle exec jekyll serve", | ||
"test": "bundle exec htmlproof ./_site" | ||
"test": "bundle exec htmlproofer ./_site" | ||
} | ||
} |
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,6 @@ | ||
#!/usr/bin/env bash | ||
set -e # halt script on error | ||
|
||
echo 'Testing travis...' | ||
bundle exec jekyll build | ||
bundle exec htmlproofer ./_site --only-4xx |