Skip to content

Instantly share code, notes, and snippets.

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 chriseppstein/14651 to your computer and use it in GitHub Desktop.
Save chriseppstein/14651 to your computer and use it in GitHub Desktop.
From e2a475f33f822d0f5810f26fcc9e562997358326 Mon Sep 17 00:00:00 2001
From: Chris Eppstein <chris@eppsteins.net>
Date: Fri, 3 Oct 2008 14:23:25 -0700
Subject: [PATCH] Fixed bug in compass initializer.
---
config/initializers/compass.rb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/config/initializers/compass.rb b/config/initializers/compass.rb
index 37e9fad..41186c6 100644
--- a/config/initializers/compass.rb
+++ b/config/initializers/compass.rb
@@ -4,5 +4,5 @@ Sass::Plugin.options[:template_location] = {
}
Compass::Frameworks::ALL.each do |framework|
- Sass::Plugin.options[:template_location][framework.stylesheets_directory] = "#{RAILS_ROOT}/public/stylesheets/compiled/#{framework.name}"
+ Sass::Plugin.options[:template_location][framework.stylesheets_directory] = "#{RAILS_ROOT}/public/stylesheets/compiled"
end
\ No newline at end of file
--
1.6.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment