Created
August 10, 2011 03:03
-
-
Save levicole/1135986 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require './app' | |
| # Configuration to use when running within Sinatra | |
| project_path = Sinatra::Application.root | |
| # HTTP paths | |
| http_path = '/' | |
| http_stylesheets_path = '/stylesheets' | |
| http_images_path = '/images' | |
| http_javascripts_path = '/javascripts' | |
| # File system locations | |
| css_dir = File.join 'tmp', 'stylesheets' | |
| sass_dir = File.join 'views', 'stylesheets' | |
| images_dir = File.join 'public', 'images' | |
| javascripts_dir = File.join 'public', 'javascripts' | |
| # Syntax preference | |
| preferred_syntax = :sass | |
| # Determine whether Compass generates relative or absolute paths | |
| relative_assets = false | |
| # Determines whether line comments should be added to compiled css for easier debugging | |
| line_comments = false | |
| # CSS output style - :nested, :expanded, :compact, or :compressed | |
| output_style = :expanded | |
| # Learn more: http://beta.compass-style.org/help/tutorials/configuration-reference/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment