为现有的sass项目添加指南针?

时间:2012-09-20 00:54:05

标签: css sass compass-sass

我有一个使用vanilla SASS的现有项目,我想添加Compass。我过去曾使用过Compass,但只使用了compass create命令。

我正在寻找一种能够通过导入与其相关的SCSS文件来利用罗盘功能的方法,而不必遵守它给出的结构。

我该怎么做?

2 个答案:

答案 0 :(得分:12)

独立项目中指南针所需的全部内容是gem和config.rb。我将配置文件从一个项目复制/粘贴到另一个项目,然后调整插件要求和文件结构等设置。您可以使用您喜欢的任何结构,只要您在配置文件中进行设置即可。

以下是我目前的一个项目的例子:

# Compass CSS framework config file

require 'susy'
require 'modular-scale'
require 'sassy-buttons'
require 'breakpoint'
require 'compass-css-arrow'
require 'rgbapng'
# Require any additional compass plugins here.

project_type = :stand_alone
# Set this to the root of your project when deployed:
http_path = "/"
sass_dir = "sass"
css_dir = "static/css"
images_dir = "static/images"
fonts_dir = "static/fonts"
javascripts_dir = "static/js"
line_comments = false
preferred_syntax = :scss
output_style = :expanded
relative_assets = true

答案 1 :(得分:1)

根据Compass Documentation,你可以使用

compass init rails path/to/project [--using blueprint]