lib/compass/validator.rb in chriseppstein-compass-0.6.13 vs lib/compass/validator.rb in chriseppstein-compass-0.6.14

- old
+ new

@@ -1,56 +1,10 @@ -require File.join(File.dirname(__FILE__), 'core_ext') +begin + require 'rubygems' + require 'compass-validator' +rescue LoadError + puts %Q{The Compass CSS Validator could not be loaded. Please install it: -module Compass - # Validates generated CSS against the W3 using Java - class Validator - VALIDATOR_FILE = File.join(File.dirname(__FILE__), 'validate', 'css-validator.jar') - attr_reader :error_count - attr_reader :css_directory - - def initialize(css_directory) - @css_directory = css_directory - @error_count = 0 - end - - # Validates all three CSS files - def validate - java_path = `which java`.rstrip - raise "You do not have a Java installed, but it is required." if java_path.blank? - - output_header - - Dir.glob(File.join(css_directory, "**", "*.css")).each do |file_name| - @error_count += 1 if !validate_css_file(java_path, file_name) - end - - output_footer - end - - private - def validate_css_file(java_path, css_file) - puts "\n\nTesting #{css_file}" - puts "Output ============================================================\n\n" - system("#{java_path} -jar '#{VALIDATOR_FILE}' -e '#{css_file}'") - end - - def output_header - puts "\n\n" - puts "************************************************************" - puts "**" - puts "** Compass CSS Validator" - puts "** Validates output CSS files" - puts "**" - puts "************************************************************" - end - - def output_footer - puts "\n\n" - puts "************************************************************" - puts "**" - puts "** Done!" - puts "** Your CSS files are#{" not" if error_count > 0} valid.#{" You had #{error_count} error(s) within your files" if error_count > 0}" - puts "**" - puts "************************************************************" - end - end +sudo gem install chriseppstein-compass-validator --source http://gems.github.com/ +} + exit(1) end \ No newline at end of file