Sha256: 867237b51bc97c21baad1d02025c05f9674a66a51eca426887926bf4abcda947
Contents?: true
Size: 532 Bytes
Versions: 15
Compression:
Stored size: 532 Bytes
Contents
require File.join(File.dirname(__FILE__), 'project_base') require File.join(File.dirname(__FILE__), 'update_project') require File.join(File.dirname(__FILE__), '..', 'validator') module Compass module Commands class ValidateProject < ProjectBase def initialize(working_path, options) super assert_project_directory_exists! end def perform UpdateProject.new(working_path, options).perform Validator.new(project_css_subdirectory).validate() end end end end
Version data entries
15 entries across 15 versions & 1 rubygems