Sha256: 888bd25d6016d0478f2c0a632031a14f206e0469f9c36f96bbeff053ba6e9afd
Contents?: true
Size: 830 Bytes
Versions: 26
Compression:
Stored size: 830 Bytes
Contents
require 'fileutils' module Blueprint module Constants # path to the root Blueprint directory ROOT_PATH = File.expand_path(File.join(File.dirname(__FILE__), "../../")) # path to where the Blueprint CSS files are stored BLUEPRINT_ROOT_PATH = File.join(ROOT_PATH, 'blueprint') # path to where the Blueprint CSS raw Sass files are stored SOURCE_PATH = File.join(ROOT_PATH, 'src') # path to where the Blueprint CSS generated test files are stored EXAMPLES_PATH = File.join(ROOT_PATH, 'examples') # path to the root of the Blueprint scripts LIB_PATH = File.join(ROOT_PATH, 'lib', 'blueprint') # path to validator jar file to validate generated CSS files VALIDATOR_FILE = File.join(LIB_PATH, 'validate', 'css-validator.jar') end end
Version data entries
26 entries across 26 versions & 6 rubygems