I am generally confused about Rails 3.1, Sprockets, and Compass.
At the top of this article, it says
*= require directives, are no longer needed using Sass-Rails, just use@importinstead. The Sass-Rails Github talks about a little about glob@importfeature, but doesn't talk at all about@importbeing the new*= require. Which one or combo :( do I use?Having
coderay.css.sassinvendor/assets/stylesheetsand using@importinapplication.css.sasswill importmy_coderay.css.sass? I don't know because I'm using Compass Mixins inmy_coderay.css.sass(thus putting a@import "compass/css3"at the top of that file) and I'm getting an error:
"File to import not found or unreadable: compass"In this article it talks about configuring Rail's Sass engine to know about the assets path. But I thought Sass-Rails already teaches
@importwhere asset path is?Also when I try to include the 31 branch of compass...
gem 'compass', :git => 'git://github.com/chriseppstein/compass.git', :branch => 'rails31'I get errors...
Using compass (0.12.0.alpha.0.22e2458) from git://github.com/chriseppstein/compass.git (at rails31) /Users/george.norris/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems/installer.rb:365:in `initialize': No such file or directory - /Users/george.norris/.rvm/gems/ruby-1.9.2-p180/bundler/gems/gems/compass-0.12.0.alpha.0.22e2458/bin/compass (Errno::ENOENT)And finally, if I take
coderay.css.sassout of vendor/assets and put it in app/assets I don't get the above error. But I getting it's spitting out errors in public/application.css.css (.css.css ???)Syntax error: File to import not found or unreadable: base. Load paths: Compass::SpriteImporter /Users/geonorr/Sites/quasar/public/stylesheets/sass /Users/geonorr/Sites/quasar/app/assets/stylesheets /Users/geonorr/.rvm/gems/ruby-1.9.2-p180/gems/compass-0.11.5/frameworks/blueprint/stylesheets /Users/geonorr/.rvm/gems/ruby-1.9.2-p180/gems/compass-0.11.5/frameworks/compass/stylesheets on line 3 of /Users/geonorr/Sites/quasar/app/
I am using Rails (3.1.0), Sass (3.1.7), Sass-Rails (3.1.0), Compass (0.11.5)