I have a Rails 3 app on which I successfully ran compass init rails ./ --using blueprint. I can @import files from the /stylesheets directory, but
compass init rails ./ --using blueprint
@import
I fixed this error after banging my head over it
I commented this line in my application.rb from:
Bundler.require(*Rails.groups(:assets => %w(development test))) if defined?(Bundler)
and uncommented:
Bundler.require(:default, :assets, Rails.env) if defined?(Bundler)
I am using Rails 3.2.11