This repository was archived by the owner on Jan 22, 2024. It is now read-only.
File tree 7 files changed +100
-0
lines changed
7 files changed +100
-0
lines changed Original file line number Diff line number Diff line change
1
+ proof /
Original file line number Diff line number Diff line change
1
+ language : ruby
2
+ rvm :
3
+ - 2.1
4
+
5
+ env :
6
+ global :
7
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
8
+
9
+ notifications :
10
+ slack : legions:Mi1b0f9fPDTvXsMrdJyNPGDx
Original file line number Diff line number Diff line change
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'html-proofer'
4
+ gem 'rake'
5
+
Original file line number Diff line number Diff line change
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ colored (1.2 )
5
+ ethon (0.7.1 )
6
+ ffi (>= 1.3.0 )
7
+ ffi (1.9.6 )
8
+ html-proofer (1.4.0 )
9
+ colored (~> 1.2 )
10
+ mercenary (~> 0.3.2 )
11
+ nokogiri (~> 1.5 )
12
+ parallel (~> 1.3 )
13
+ typhoeus (~> 0.6.7 )
14
+ yell (~> 2.0 )
15
+ mercenary (0.3.4 )
16
+ mini_portile (0.6.1 )
17
+ nokogiri (1.6.4 )
18
+ mini_portile (~> 0.6.0 )
19
+ parallel (1.3.3 )
20
+ rake (10.1.0 )
21
+ typhoeus (0.6.9 )
22
+ ethon (>= 0.7.1 )
23
+ yell (2.0.5 )
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ html-proofer
30
+ rake
Original file line number Diff line number Diff line change
1
+ [ ![ Build Status] ( https://travis.DEMOGITHUB.org/DEMONAME/sample.svg?token=TOKENHERE&branch=master )] ( https://travis.DEMOGITHUB.org/DEMONAME/sample )
2
+
3
+ # Sample HTML-based App
4
+
5
+ This application shows off the power of:
6
+
7
+ * GitHub Hubot
8
+ * GitHub
9
+ * GitHub Pull Requests
10
+ * GitHub Services
11
+ * GitHub Webhooks
12
+ * Slack
Original file line number Diff line number Diff line change
1
+ task :default => [ :proof_readme ]
2
+
3
+ task :proof_readme do
4
+ require 'html/proofer'
5
+
6
+ Dir . mkdir ( "proof" ) unless File . exists? ( "proof" )
7
+ system "cp *.html proof/"
8
+ HTML ::Proofer . new ( "./proof" ) . run
9
+ end
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < title > Welcome to an example website</ title >
5
+ < style >
6
+ body {
7
+ color : # ffffff ;
8
+ background-color : # 03bbcc ;
9
+ font-family : Arial, sans-serif;
10
+ font-size : 16px ;
11
+ }
12
+ a : link {
13
+ text-decoration : none;
14
+ }
15
+ h1 {
16
+ font-size : 450% ;
17
+ }
18
+ h2 {
19
+ font-size : 180% ;
20
+ }
21
+ </ style >
22
+ </ head >
23
+
24
+ < body >
25
+ < div align ="center ">
26
+ < h1 > Welcome to GitHub!</ h1 >
27
+ < h2 > This site was shipped using < a href ="https://pages.github.com "> GitHub Pages</ a > </ h2 >
28
+ < p > We've got a suite of < a href ="https://github.com/integrations/ "> GitHub integrations</ a > ready to power up your development workflows.</ p >
29
+ < p > Our < a href ="https://training.github.com "> GitHub Training Team</ a > is ready to help with our OSS curriculum and live classes.</ p >
30
+ </ div >
31
+ </ body >
32
+ </ html >
33
+
You can’t perform that action at this time.
0 commit comments