src、tmp、publicを分けるような、ジェネレータ系の構成にしたいときのconfig.rb設定。
project_pathを設定して、sass_dirはそこから相対で指定する。
config.rb
http_path = "/"
project_path = "src"
css_dir = "css"
sass_dir = "../scss"
images_dir = "images"
javascripts_dir = "js"
asset_cache_buster :none
if (environment == :production)
output_style = :compressed
else
output_style = :expanded
end
relative_assets = true
line_comments = false