# Current dir place dir = File.dirname(__FILE__); # sass_path: the directory your Sass files are in. THIS file should also be in the Sass folder # /sass sass_path = File.join(dir); # css_path: the directory you want your CSS files to be. # /../css css_path = File.join(sass_path, "css"); # output_style: The output style for your compiled CSS # nested, expanded, compact, compressed # More information can be found here http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style #output_style = :compressed output_style = (environment == :production) ? :compressed : :expanded project_type = :stand_alone; # include the utils rb file which has extra functionality for the ext theme require File.join(dir, 'lib', 'utils.rb') # include images images_dir = File.join(dir, "images")