Class: HTML::Proofer
- Inherits:
-
Object
- Object
- HTML::Proofer
- Defined in:
- lib/html/proofer.rb,
lib/html/proofer/checks.rb,
lib/html/proofer/version.rb
Defined Under Namespace
Classes: Checks
Constant Summary collapse
- VERSION =
"0.0.13"
Class Method Summary collapse
Instance Method Summary collapse
- #get_checks ⇒ Object
-
#initialize(src, opts = {}) ⇒ Proofer
constructor
A new instance of Proofer.
- #print_issues(klass, issues) ⇒ Object
- #run ⇒ Object
Constructor Details
#initialize(src, opts = {}) ⇒ Proofer
Returns a new instance of Proofer.
6 7 8 9 10 |
# File 'lib/html/proofer.rb', line 6 def initialize(src, opts={}) @srcDir = src = {:ext => ".html"}.merge(opts) @failedTests = [] end |
Class Method Details
.create_nokogiri(path) ⇒ Object
43 44 45 |
# File 'lib/html/proofer.rb', line 43 def self.create_nokogiri(path) Nokogiri::HTML(File.read(path)) end |
Instance Method Details
#get_checks ⇒ Object
47 48 49 |
# File 'lib/html/proofer.rb', line 47 def get_checks HTML::Proofer::Checks::Check.subclasses end |
#print_issues(klass, issues) ⇒ Object
51 52 53 54 55 56 57 |
# File 'lib/html/proofer.rb', line 51 def print_issues(klass, issues) return if issues.empty? @failedTests.push klass issues.each do |issue| $stderr.puts issue + "\n\n" end end |
#run ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/html/proofer.rb', line 12 def run get_checks.each do |klass| puts "Running #{klass.name.split(/:/).pop()} check... \n\n" Find.find(@srcDir) do |path| if File.extname(path) == [:ext] html = HTML::Proofer.create_nokogiri(path) check = klass.new(path, html, ) check.run check.hydra.run self.print_issues(klass, check.issues) end end end if !@failedTests.empty? # make the hash default to 0 so that += will work correctly count = Hash.new(0) # iterate over the array, counting duplicate entries @failedTests.each do |v| count[v] += 1 end count.each do |k, v| $stderr.puts "#{k} failed #{v} times" end raise "Tests ran, but found failures!" end end |