10 lines
248 B
Ruby
10 lines
248 B
Ruby
begin
|
|
require 'rubygems'
|
|
require 'compass-validator'
|
|
rescue LoadError
|
|
puts %Q{The Compass CSS Validator could not be loaded. Please install it:
|
|
|
|
sudo gem install chriseppstein-compass-validator --source http://gems.github.com/
|
|
}
|
|
exit(1)
|
|
end |