diff options
Diffstat (limited to 'guides/w3c_validator.rb')
-rw-r--r-- | guides/w3c_validator.rb | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/guides/w3c_validator.rb b/guides/w3c_validator.rb index eac668c9cd..5e340499c4 100644 --- a/guides/w3c_validator.rb +++ b/guides/w3c_validator.rb @@ -5,9 +5,9 @@ # Guides are taken from the output directory, from where all .html files are # submitted to the validator. # -# This script is prepared to be launched from the guides directory as a rake task: +# This script is prepared to be launched from the railties directory as a rake task: # -# rake guides:validate +# rake validate_guides # # If nothing is specified, all files will be validated, but you can check just # some of them using this environment variable: @@ -17,12 +17,12 @@ # enough: # # # validates only association_basics.html -# rake guides:validate ONLY=assoc +# ONLY=assoc rake validate_guides # # Separate many using commas: # # # validates only association_basics.html and migrations.html -# rake guides:validate ONLY=assoc,migrations +# ONLY=assoc,migrations rake validate_guides # # --------------------------------------------------------------------------- @@ -38,12 +38,7 @@ module RailsGuides errors_on_guides = {} guides_to_validate.each do |f| - begin - results = validator.validate_file(f) - rescue Exception => e - puts "Could not validate #{f} because of #{e}" - next - end + results = validator.validate_file(f) if results.validity print "." @@ -58,15 +53,15 @@ module RailsGuides private def guides_to_validate - guides = Dir["./output/*.html"] - guides.delete("./output/layout.html") + guides = Dir["./guides/output/*.html"] + guides.delete("./guides/output/layout.html") ENV.key?('ONLY') ? select_only(guides) : guides end def select_only(guides) prefixes = ENV['ONLY'].split(",").map(&:strip) guides.select do |guide| - prefixes.any? {|p| guide.start_with?("./output/#{p}")} + prefixes.any? {|p| guide.start_with?("./guides/output/#{p}")} end end |