I am struggling BIG TIME with getting this framework set up correctly. Has anyone successfully been able to get this working? If so, I would love any and all feedback. Thanks!

I'm following the instructions from http://compass-style.org/install/ and wondering where to put the files within the Rails 3.1 app: inside app/assets/stylesheets or keep it in app/stylesheets as it resides when installing compass?

Also, compass gives a set of instructions after $ compass init rails . --using blueprint below:

Now add these lines to the head of your layout(s):

%head
= stylesheet_link_tag 'screen.css', :media => 'screen, projection'
= stylesheet_link_tag 'print.css', :media => 'print'
/[if lt IE 8]
= stylesheet_link_tag 'ie.css', :media => 'screen, projection'

This looks like HAML (which I'm not familiar with). I add these link tags using .erb instead and nothing seems to work.

link|improve this question

metaskills.net/2011/05/18/… google is your friend – ilia choly Oct 18 '11 at 19:03
@iliacholy i've read this multiple times, no luck – pruett Oct 18 '11 at 19:05
you didn't mention that in your question. Or anything really. You need to tell us what problems you ran into. – ilia choly Oct 18 '11 at 19:15
@iliacholy your right, edited the post a bit – pruett Oct 18 '11 at 19:41
Are your styles compiling? You can try compass watch, which should show you errors. You don't need the .css on the stylesheet names. – butterywombat Oct 19 '11 at 0:03
feedback

1 Answer

Putting this into my config/application.rb worked for me:

config.sass.load_paths ||= []
config.sass.load_paths << "#{Gem.loaded_specs['compass'].full_gem_path}/frameworks/compass/stylesheets"
config.sass.load_paths << "#{Gem.loaded_specs['compass'].full_gem_path}/frameworks/blueprint/stylesheets" 

REF: https://github.com/rails/sass-rails/issues/3

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.