[Rails] The font directory for rails projects will default to public/fonts.

This commit is contained in:
Chris Eppstein 2009-11-28 12:11:11 -08:00
parent fb16bf6ace
commit ca6ffb4f57

View File

@ -11,6 +11,10 @@ module Compass
File.join("public", "images")
end
def default_fonts_dir
File.join("public", "fonts")
end
def default_javascripts_dir
File.join("public", "javascripts")
end
@ -23,6 +27,10 @@ module Compass
"/javascripts"
end
def default_http_fonts_path
"/fonts"
end
def default_http_stylesheets_path
"/stylesheets"
end