Sha256: f8321d52be5d3306bfa973f6db027f35c682fcb854dfe76163a080a04803d217
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
module CompassRails module Configuration module Rails3_1 def default_images_dir File.join("app", "assets", "images") end def default_fonts_dir File.join("app", "assets", "fonts") end def default_javascripts_dir File.join("app", "assets", "javascripts") end def default_css_dir File.join('public', CompassRails.prefix) end def default_http_path File.join(CompassRails.prefix) end def default_http_images_path "#{top_level.http_path}" end def default_http_generated_images_path "#{top_level.http_path}" end def default_http_javascripts_path "#{top_level.http_path}" end def default_http_fonts_path "#{top_level.http_path}" end def default_http_stylesheets_path "#{top_level.http_path}" end def default_preferred_syntax ::Rails.application.config.sass.preferred_syntax rescue nil end end end end
Version data entries
3 entries across 3 versions & 1 rubygems