1

我正在尝试在我的指南针项目中使用 960 网格系统。

所以我安装了gem:

gem install compass-960-plugin

然后在我的指南针项目中,我将以下规则添加到我的“ config.rb ”文件中:

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

但是当我尝试在我的screen.scss中导入时:

@import 960/grid

它不工作。我得到的错误如下:

Compass 无法编译项目中的一个或多个文件:

Compass 无法编译项目中的一个或多个文件:

LoadError on line 161 of /Applications/CodeKit.app/Contents/Resources/engines/compass/bin/../lib/compass/configuration/data.rb: no such file to load -- Ninesixty Run with --trace to see完整的回溯

4

1 回答 1

0

看起来宝石不在您的 LOAD_PATH 中。您require 'rubygems'之前需要 960 宝石吗?你在使用像Bundler这样的东西吗?

于 2013-10-16T15:42:12.867 回答