ruby on rails 3.2 - Compass file to import not found -
i'm undergoing process of upgrading our rails 3.0.* app 3.2.13
in past, have used compass (via compass-rails) gem extensively. our stylesheets located in public/sass , use compass in following way:
@import "compass/reset/utilities";
upon upgrading, moving stylesheets app/assets/stylesheets directory
one of files @imports compass/reset/utilities receiving following error when attempts compile:
sass::syntaxerror: file import not found or unreadable: compass/reset/utilities. load path: blahblahblah (in blahblahblah/app/assets/stylesheets/common/reset.css.scss)"
i have compass.rb config file sets sass_dir public/sass i'm not sure how adjust point correct new directory.
i have gist available @ https://gist.github.com/naderhen/b0908c55739c78cb45bd reset.scss , compass.rb file
in gemfile, have following
group :assets gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> 3.2.1' gem 'uglifier', '>= 1.0.3' gem "compass-rails" gem "compass-960-plugin" gem "compass_twitter_bootstrap" end
any in appreciated. i've tried number of solutions here on none have worked particular issue.
thanks!
edit gemfile , remove , '~> 3.2.3' gem 'sass-rails' line. run 'bundle update sass-rails'. update sass-rails version 3.2.6 (current of 5/31/2013), seems know find compass files.
Comments
Post a Comment