File to import not found or unreadable: susy

▼魔方 西西 提交于 2019-12-19 07:02:10

问题


I just can't figure out what is wrong with my setup with Susy. I am on OS X 10.7.4

I have followed along here: http://susy.oddbird.net/guides/getting-started/

Error

Syntax error: File to import not found or unreadable: susy.
Load paths:
Users/simon/Websites/wpsvntree/trunk/sass
/Users/simon/.gem/ruby/1.8/gems/compass-0.11.7/frameworks/blueprint/stylesheets
/Users/simon/.gem/ruby/1.8/gems/compass-0.11.7/frameworks/compass/stylesheets
            Compass::SpriteImporter
on line 2 of /Users/simon/Websites/wpsvntree/trunk/sass/_base.sass
from line 2 of /Users/simon/Websites/wpsvntree/trunk/sass/screen.sass

My installed Gems:

*** LOCAL GEMS ***

chunky_png (1.2.6, 1.2.5)
compass (0.12.2, 0.11.7)
compass-boilerplate-plugin (0.1.0)
compass-h5bp (0.0.5, 0.0.2)
compass-rails (1.0.3)
fssm (0.2.9, 0.2.8.1)
html5-boilerplate (2.1.0)
sass (3.2.1, 3.1.15)
susy (1.0.3)

My config.rb file which is sitting in the root of the project

require 'susy' 
# Require any additional compass plugins here.

# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "stylesheets"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "javascripts"

# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed

# To enable relative paths to assets via compass helper functions. Uncomment:
relative_assets = true

_base.scss

// ---------------------------------------------------------------------------
// Imports
@import "susy";

/* GRID SETUP
----------------------------------------------------------------------------------*/

$total-columns  : 12;
$column-width   : 4em;
$gutter-width   : 1em;
$grid-padding   : $gutter-width;
$show-grid-backgrounds  : true;
/* SECTION
----------------------------------------------------------------------------------*/

screen.scss

 @import "base";
 .container {
  @include container;
  @include susy-grid-background;
 }

I ran this command from the directory wpsvntree: compass create trunk -r susy -u susy with success.

then compass watch trunk/

Viewing my project I see the first above error.

I can't see where I have gone wrong.

Thanks.


回答1:


Followed the solution here. Fixed. https://github.com/ericam/susy/issues/21




回答2:


I was having this problem and found that my syntax was wrong in my config.rb file. The correct line would be require "susy" but I had an equal sign between require and susy, which is wrong.

I hope that helps other noobs out there like myself.




回答3:


Try

gem install compass --pre

This worked for me




回答4:


While it may not be "the correct answer" I had the same error, and realised I was trying to build with SASS, instead of using the Compass build system.

A bit silly I know, but hopefully if someone makes the same mistake, it could be helpful :D/



来源:https://stackoverflow.com/questions/13022956/file-to-import-not-found-or-unreadable-susy

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!