compass/doc-src/content/help/tutorials/integration.markdown

93 lines
3.0 KiB
Markdown
Raw Normal View History

---
title: Application Integration
layout: tutorial
2011-06-01 15:56:40 +00:00
crumb: Application Integration
classnames:
- tutorial
---
# Application Integration
## Ruby on Rails
2011-10-09 15:34:39 +00:00
### Rails 3.1
Just add compass to your Gemfile like so:
gem 'compass'
Also checkout this [gist](https://gist.github.com/1184843)
### Rails 3
compass init rails /path/to/myrailsproject
### Rails 2.3
rake rails:template LOCATION=http://compass-style.org/rails/installer
## Sinatra
2011-10-09 15:34:39 +00:00
require 'compass'
require 'sinatra'
require 'haml'
configure do
2011-10-09 15:34:39 +00:00
set :haml, {:format => :html5, :escape_html => true}
set :scss, {:style => :compact, :debug_info => false}
Compass.add_project_configuration(File.join(Sinatra::Application.root, 'config', 'compass.rb'))
end
2011-10-09 15:34:39 +00:00
get '/stylesheets/:name.css' do
content_type 'text/css', :charset => 'utf-8'
2011-10-09 15:34:39 +00:00
scss(:"stylesheets/#{params[:name]}" )
end
get '/' do
haml :index
end
2011-10-09 15:34:39 +00:00
If you keep your stylesheets in “views/stylesheets/” directory instead of just “views/”, remember to update sass_dir configuration accordingly.
Check out this [sample compass-sinatra project](http://github.com/chriseppstein/compass-sinatra) to get up and running in no time!
[Sinatra Bootstrap](http://github.com/adamstac/sinatra-bootstrap) - a base Sinatra project with support for Haml, Sass, Compass, jQuery and more.
## Nanoc3
### Minimal integration: just drop it in
One simple route for lightweight integration is to simply install compass inside nanoc. Then edit config.rb to point to the stylesheets you want to use. This means you have to have the Compass watch command running in a separate window from the Nanoc compilation process.
Example project that works this way: http://github.com/unthinkingly/unthinkingly-blog
### More formal integration
At the top of the Nanoc Rules file, load the Compass configuration, like this:
require 'compass'
2011-10-09 13:44:00 +00:00
Compass.add_project_configuration 'compass.rb' # when using Compass > 0.10
Compass.configuration.parse 'compass.rb' # when using Compass < 0.10
Your Compass configuration file (in compass/config.rb) could look like this (you may need to change the path to some directories depending on your directory structure):
2011-10-09 13:44:00 +00:00
http_path = "/"
project_path = File.expand_path(File.join(File.dirname(__FILE__), '..'))
css_dir = "output/stylesheets"
sass_dir = "content/stylesheets"
images_dir = "assets/images"
javascripts_dir = "assets/javascripts"
fonts_dir = "assets/fonts"
http_javascripts_dir = "javascripts"
http_stylesheets_dir = "stylesheets"
http_images_dir = "images"
http_fonts_dir = "fonts"
To filter the stylesheets using Sass and Compass, call the sass filter with Sass engine options taken from Compass, like this:
2011-10-09 13:44:00 +00:00
compile '/stylesheets/*' do
filter :sass, sass_options.merge(:syntax => item[:extension].to_sym)
end
### Nanoc Projects using the formal approach
2011-10-09 13:44:00 +00:00
* [This Site](https://github.com/chriseppstein/compass/tree/master/doc-src)