File: compass-layoutgala-plugin.rb

package info (click to toggle)
compass-layoutgala-plugin 0.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 240 kB
  • sloc: ruby: 23; makefile: 2; sh: 1
file content (11 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
base_directory  = File.expand_path('/usr/share/compass/frameworks/layoutgala')
stylesheets_path = File.join(base_directory, 'stylesheets')

if (defined? Compass)
	Compass::Frameworks.register(
		'blueprint',
		:path => base_directory
	)
else
	ENV["SASS_PATH"] = [ENV["SASS_PATH"], stylesheets_path].compact.join(File::PATH_SEPARATOR)
end