Skip to content

Instantly share code, notes, and snippets.

@coffeesam
Forked from mislav/Gemfile
Created December 8, 2011 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coffeesam/1448880 to your computer and use it in GitHub Desktop.
Save coffeesam/1448880 to your computer and use it in GitHub Desktop.
How to integrate Compass with Rails 3.1 asset pipeline

Super extra minimal Compass to Rails 3.1 bootstrap

Update: these instructions are only valid until Compass version 0.12 goes stable. Then the hack won't be necessary.

Skips all of the nasty and bloated old Compass Rails integration. No need for that confusing "config/compass.rb" file, either.

Note that this will only work for simple stylesheets and probably needs extra configuration for stuff like sprites.

module Compass
RAILS_LOADED = true
end
if defined?(Bundler)
Bundler.require(:default, :assets, Rails.env)
end
module MyPrecious
class Application < Rails::Application
config.assets.enabled = true
# that's it!
config.sass.load_paths << Compass::Frameworks['compass'].stylesheets_directory
end
end
group :assets do
gem 'sass-rails', '~> 3.1.0'
gem 'coffee-rails', '~> 3.1.0'
gem 'uglifier'
gem 'compass'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment