I am having issues importing compass, it's definitely installed (gem list confirms that), breakpoint and susy work fine but it doesn't like the compass import...
Error:
Error: File to import not found or unreadable: compass.
Load paths:
/Users/xx/dev/roomfully/listaroom-app
/Users/xx/.rvm/gems/ruby-2.1.1/gems/susy-2.2.2/sass
/Users/xx/.rvm/gems/ruby-2.1.1/gems/breakpoint-2.5.0/stylesheets
on line 1 of public/sass/app.scss
Use --trace for backtrace.
Gruntfile
module.exports = function(grunt) {
grunt.initConfig({
sass: {
dist: {
options: {
require: [
'susy',
'breakpoint',
'compass',
'compass-normalize'
]
},
files: {
'public/app.css': 'public/sass/app.scss'
}
}
},
watch: {
dist: {
files: 'public/sass/*.scss',
tasks: ['sass']
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');
}
app.scss
@import 'compass';
@import 'compass-normalize';
@import 'breakpoint';
@import 'susy';
body {
display: none
}