Skip to content

Commit da7134b

Browse files
fix simplest htmlproof
1 parent fc5dfe1 commit da7134b

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
source 'http://rubygems.org'
44

55
group :development do
6+
gem 'html-proofer'
67
gem 'jekyll', '~> 3.0', '>= 3.0.1'
78
gem 'jekyll-paginate', '~> 1.1'
89
gem 'sass', '~> 3.4', '>= 3.4.20'

Gemfile.lock

+33
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,31 @@
11
GEM
22
remote: http://rubygems.org/
33
specs:
4+
activesupport (4.2.5)
5+
i18n (~> 0.7)
6+
json (~> 1.7, >= 1.7.7)
7+
minitest (~> 5.1)
8+
thread_safe (~> 0.3, >= 0.3.4)
9+
tzinfo (~> 1.1)
10+
addressable (2.4.0)
411
bourbon (4.2.6)
512
sass (~> 3.4)
613
thor (~> 0.19)
714
colorator (0.1)
15+
colored (1.2)
16+
ethon (0.8.0)
17+
ffi (>= 1.3.0)
818
ffi (1.9.10)
19+
html-proofer (2.6.1)
20+
activesupport (~> 4.2)
21+
addressable (~> 2.3)
22+
colored (~> 1.2)
23+
mercenary (~> 0.3.2)
24+
nokogiri (~> 1.5)
25+
parallel (~> 1.3)
26+
typhoeus (~> 0.7)
27+
yell (~> 2.0)
28+
i18n (0.7.0)
929
jekyll (3.0.1)
1030
colorator (~> 0.1)
1131
jekyll-sass-converter (~> 1.0)
@@ -20,12 +40,18 @@ GEM
2040
sass (~> 3.4)
2141
jekyll-watch (1.3.0)
2242
listen (~> 3.0)
43+
json (1.8.3)
2344
kramdown (1.9.0)
2445
liquid (3.0.6)
2546
listen (3.0.5)
2647
rb-fsevent (>= 0.9.3)
2748
rb-inotify (>= 0.9)
2849
mercenary (0.3.5)
50+
mini_portile2 (2.0.0)
51+
minitest (5.8.3)
52+
nokogiri (1.6.7.1)
53+
mini_portile2 (~> 2.0.0.rc2)
54+
parallel (1.6.1)
2955
posix-spawn (0.3.11)
3056
pygments.rb (0.6.3)
3157
posix-spawn (~> 0.3.6)
@@ -37,13 +63,20 @@ GEM
3763
safe_yaml (1.0.4)
3864
sass (3.4.20)
3965
thor (0.19.1)
66+
thread_safe (0.3.5)
67+
typhoeus (0.8.0)
68+
ethon (>= 0.8.0)
69+
tzinfo (1.2.2)
70+
thread_safe (~> 0.1)
4071
yajl-ruby (1.2.1)
72+
yell (2.0.5)
4173

4274
PLATFORMS
4375
ruby
4476

4577
DEPENDENCIES
4678
bourbon (~> 4.2, >= 4.2.6)
79+
html-proofer
4780
jekyll (~> 3.0, >= 3.0.1)
4881
jekyll-paginate (~> 1.1)
4982
pygments.rb (~> 0.6.3)

deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ echo 'Jekyll build...'
88
bundle exec jekyll build
99

1010
echo 'Testing htmlproof...'
11-
bundle exec htmlproof ./_site --href-ignore "#","#!" --disable-external
11+
bundle exec htmlproof ./_site --href-ignore "#","/simplest/" --disable-external
1212

1313
cd ${HTML_FOLDER}
1414

0 commit comments

Comments
 (0)