We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5db127 commit c0a2405Copy full SHA for c0a2405
.travis.yml
@@ -0,0 +1,11 @@
1
+language: ruby
2
+cache: bundler
3
+gemfile: docs/Gemfile
4
+script:
5
+ - bundle exec jekyll algolia --source docs --destination docs/_site --config docs/_config.yml
6
+branches:
7
+ only:
8
+ # Change this to gh-pages if you're deploying using the gh-pages branch
9
+ - master
10
+rvm:
11
+ - 2.4
Rakefile
@@ -1,18 +1,6 @@
require "bundler/gem_tasks"
require "jekyll"
require "listen"
-require 'html-proofer'
-
-task :build do
- puts 'Building site...'.bold
- Jekyll::Commands::Build.process(profile: true, future: true)
-end
-task :html_proofer do
12
- Rake::Task['build'].invoke
13
- puts 'Running html proofer...'
14
- HTMLProofer.check_directory('./_site').run
15
16
17
def listen_ignore_paths(base, options)
18
[
0 commit comments