Add Jekyll and Proofer tests

This commit is contained in:
Anatol Broder 2014-07-28 21:49:14 +02:00
parent f07ae0f476
commit 00773a6544
3 changed files with 19 additions and 2 deletions

13
.travis.yml Normal file
View file

@ -0,0 +1,13 @@
language: ruby
rvm:
- 2.1
before_install:
- export NOKOGIRI_USE_SYSTEM_LIBRARIES=true
script:
- bundle exec jekyll build --drafts
- bundle exec htmlproof ./_site
notifications:
email: false

View file

@ -6,4 +6,8 @@ gem 'coderay'
gem 'rake'
gem 'thor'
gem 'activesupport'
gem 'stringex'
gem 'stringex'
group :test do
gem 'html-proofer'
end

View file

@ -68,4 +68,4 @@ kramdown:
coderay_css: class
include: [".htaccess"]
exclude: ["lib", "config.rb", "Gemfile", "Capfile", "README.md", "LICENSE", "Gemfile.lock", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules"]
exclude: ["lib", "config.rb", "Gemfile", "Capfile", "README.md", "LICENSE", "Gemfile.lock", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules", "vendor"]