mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-21 09:37:12 +00:00
Add Jekyll and Proofer tests
This commit is contained in:
parent
f07ae0f476
commit
00773a6544
3 changed files with 19 additions and 2 deletions
13
.travis.yml
Normal file
13
.travis.yml
Normal 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
|
6
Gemfile
6
Gemfile
|
@ -6,4 +6,8 @@ gem 'coderay'
|
|||
gem 'rake'
|
||||
gem 'thor'
|
||||
gem 'activesupport'
|
||||
gem 'stringex'
|
||||
gem 'stringex'
|
||||
|
||||
group :test do
|
||||
gem 'html-proofer'
|
||||
end
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in a new issue