File tree 6 files changed +49
-0
lines changed
6 files changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ language : ruby
2
+ rvm :
3
+ - 2.3.3
4
+
5
+ script :
6
+ - ./scripts/build
7
+ - ./scripts/test
8
+
9
+ branches :
10
+ only :
11
+ - master
12
+ - /master-(.*)/ # test every branch which starts with "pages-"
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ gem "jekyll", "3.3.1"
13
13
14
14
# This is the default theme for new Jekyll sites. You may change this to anything you like.
15
15
gem "minima" , "~> 2.0"
16
+ gem "html-proofer"
16
17
17
18
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
18
19
# uncomment the line below. To upgrade, run `bundle update github-pages`.
Original file line number Diff line number Diff line change 1
1
GEM
2
2
remote: https://rubygems.org/
3
3
specs:
4
+ activesupport (5.1.0 )
5
+ concurrent-ruby (~> 1.0 , >= 1.0.2 )
6
+ i18n (~> 0.7 )
7
+ minitest (~> 5.1 )
8
+ tzinfo (~> 1.1 )
4
9
addressable (2.5.0 )
5
10
public_suffix (~> 2.0 , >= 2.0.2 )
6
11
colorator (1.1.0 )
12
+ colored (1.2 )
13
+ concurrent-ruby (1.0.5 )
14
+ ethon (0.10.1 )
15
+ ffi (>= 1.3.0 )
7
16
ffi (1.9.14 )
8
17
forwardable-extended (2.6.0 )
18
+ html-proofer (3.6.0 )
19
+ activesupport (>= 4.2 , < 6.0 )
20
+ addressable (~> 2.3 )
21
+ colored (~> 1.2 )
22
+ mercenary (~> 0.3.2 )
23
+ nokogiri (~> 1.5 )
24
+ parallel (~> 1.3 )
25
+ typhoeus (~> 0.7 )
26
+ yell (~> 2.0 )
27
+ i18n (0.8.1 )
9
28
jekyll (3.3.1 )
10
29
addressable (~> 2.4 )
11
30
colorator (~> 1.0 )
29
48
rb-fsevent (~> 0.9 , >= 0.9.4 )
30
49
rb-inotify (~> 0.9 , >= 0.9.7 )
31
50
mercenary (0.3.6 )
51
+ mini_portile2 (2.1.0 )
32
52
minima (2.1.0 )
33
53
jekyll (~> 3.3 )
54
+ minitest (5.10.1 )
55
+ nokogiri (1.7.1 )
56
+ mini_portile2 (~> 2.1.0 )
57
+ parallel (1.11.2 )
34
58
pathutil (0.14.0 )
35
59
forwardable-extended (~> 2.6 )
36
60
public_suffix (2.0.4 )
40
64
rouge (1.11.1 )
41
65
safe_yaml (1.0.4 )
42
66
sass (3.4.23 )
67
+ thread_safe (0.3.6 )
68
+ typhoeus (0.8.0 )
69
+ ethon (>= 0.8.0 )
70
+ tzinfo (1.2.3 )
71
+ thread_safe (~> 0.1 )
72
+ yell (2.0.7 )
43
73
44
74
PLATFORMS
45
75
ruby
46
76
47
77
DEPENDENCIES
78
+ html-proofer
48
79
jekyll (= 3.3.1 )
49
80
jekyll-feed (~> 0.6 )
50
81
minima (~> 2.0 )
Original file line number Diff line number Diff line change 33
33
exclude :
34
34
- Gemfile
35
35
- Gemfile.lock
36
+ - vendor
36
37
37
38
google_analytics : UA-57792488-6
38
39
defaults :
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ bundle exec jekyll build
Original file line number Diff line number Diff line change
1
+ bundle exec htmlproofer ./_site
You can’t perform that action at this time.
0 commit comments