File: singularitygs.rb

package info (click to toggle)
compass-singularitygs-plugin 1.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 568 kB
  • sloc: ruby: 70; makefile: 33
file content (17 lines) | stat: -rw-r--r-- 457 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
base_directory  = File.expand_path('/usr/share/compass/frameworks/singularitygs')
singularitygs_sass_path = File.join(base_directory, 'stylesheets')

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

module SingularityGS
  VERSION = "1.7.1"
  DATE = "2016-12-07"
end