Problem/Motivation

I've been trying to create a Aurora/Susy grid subtheme to no avail.

My aurora install path is: /sites/all/themes/contrib/aurora
My desired subtheme path is: /sites/all/themes/custom/aurora_test

From /sites/all/themes/custom I run:
compass create aurora_test -r aurora --using aurora/susy

I get:

clang: error: unsupported option '--using'
clang: error: no such file or directory: 'aurora'
clang: error: no such file or directory: 'aurora/susy'

However, if I run the longer version of the compass command:
compass create aurora_test -r aurora --using aurora/susy

In return, I get:

directory aurora_test/ 
create aurora_test/config.rb 
Nothing to compile. If you're trying to start a new project, you have left off the directory argument.
Run "compass -h" to get help.

Just the directory and config.rb file are created.

If I try to create a regular old aurora subtheme (non-susy), things work just fine - the subtheme directory and all files get created.

Thanks in advance.

My versions:
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin11.0]
Compass 0.12.2 (Alnilam)
Sass 3.2.6 (Media Mark)

My gems:

*** LOCAL GEMS ***

addressable (2.3.4)
blend-mode (0.0.1)
breakpoint (2.0.5)
bundler (1.3.5)
chunky_png (1.2.5)
color-schemer (0.2.3)
compass (0.12.2)
compass-aurora (3.0.6)
compass-normalize (1.4.3)
css_parser (1.3.4)
fssm (0.2.8.1)
rubygems-update (2.0.3, 2.0.2, 1.8.17)
sass (3.2.6, 3.2.1)
sassy-buttons (0.1.4)
sassy-strings (0.3.1)
singularitygs (1.0.8)
susy (1.0.5, 1.0.rc.4, 1.0.rc.2)
toolkit (1.0.0)
zen-grids (1.2)

Comments

Snugug’s picture

Status: Active » Closed (fixed)

The Susy option has been removed fro Compass Aurora 3.x as neither my co-maintainer nor I use Susy and have chosen not to support it. Aurora 3.x instead now comes with three different basetheme options that, instead of having different Compass extensions, instead are only different partial structures. Refer to the Aurora 3.x Documentation for the different options. While we encourage you to use Singularity instead of Susy for your grids, if you would like to use Susy, create a new subtheme choosing the partial structure of your choice, in the Gemfile, remove Singularity and add Susy, in _base.scss replace @import "singularitygs"; with @import "susy";, then follow the rest of the instructions in the documentation.

Snugug’s picture

Status: Closed (fixed) » Closed (works as designed)