Sass import error in Rails 3 app - “File to import not found or unreadable: compass”
问题 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 I get an error when I try to @import compass . Right now the app has two simple sass files: common.scss $body-background: blue; main.scss @import "common"; //@import "compass"; body { background: $body-background; } With the @import "compass" line commented out, this works -- I get a blue background, so I know Sass is working. If I uncomment the