15 lines
401 B
Ruby
15 lines
401 B
Ruby
|
#!/usr/bin/env ruby
|
||
|
|
||
|
require 'blueprint/blueprint'
|
||
|
require 'blueprint/validator'
|
||
|
|
||
|
# This script will validate the core Blueprint files.
|
||
|
#
|
||
|
# The files are not completely valid. This has to do
|
||
|
# with a small number of CSS hacks needed to ensure
|
||
|
# consistent rendering across browsers.
|
||
|
#
|
||
|
# To add your own CSS files for validation, see
|
||
|
# /lib/blueprint/validator.rb
|
||
|
|
||
|
Blueprint::Validator.new.validate
|