I successfully installed Sass, but I\'m having trouble importing Compass.
The following is the error detail:
*Syntax error: File to import not found
I'm seeing this issue using Rails 4.0.2 and compass-rails 1.1.3
I got past this error by moving gem 'compass-rails' outside of the :assets group in my Gemfile
gem 'compass-rails'
:assets
Gemfile
It looks something like this:
# stuff gem 'compass-rails', '~> 1.1.3' group :assets do # more stuff end