I upgraded to Aurora 3.x, installed Magic and the other modules listed in the new docs. I then went and created a new aurora subtheme using susy. I copied over the Gemfile from the base theme. Made some changes to the Sass files. On running "bundle exec compass watch" I get:

LoadError on line 161 of /Library/Ruby/Gems/1.8/gems/compass-0.12.2/lib/compass/configuration/data.rb: no such file to load -- aurora

Tried updating compass-aurora, but that didn't help.

I'm still able to run "bundle exec compass watch" on a pre-update subtheme.

I'm not well-versed with Ruby gems, so I'm at a loss as to what this error means or how to fix it. Any help would be greatly appreciated.

Comments

Snugug’s picture

Did you remember to run bundle install when you copied your Gemfile over before trying to compile?

skt’s picture

Thanks, Sam. I *think* so, but wasn't totally sure so tried it again. No change:

MacBook-Pro:sandbox_aurora3 skt$ bundle install
Using chunky_png (1.2.8) 
Using fssm (0.2.10) 
Using sass (3.2.8) 
Using compass (0.12.2) 
Using blend-mode (0.0.1) 
Using breakpoint (2.0.5) 
Using color-schemer (0.2.3) 
Using sassy-strings (0.3.1) 
Using singularitygs (1.0.8) 
Using toolkit (1.0.0) 
Using bundler (1.3.5) 
Your bundle is complete!
Use `bundle show [gemname]` to see where a bundled gem is installed.
MacBook-Pro:sandbox_aurora3 skt$ bundle exec compass watch
LoadError on line 161 of /Library/Ruby/Gems/1.8/gems/compass-0.12.2/lib/compass/configuration/data.rb: no such file to load -- aurora
Run with --trace to see the full backtrace
MacBook-Pro:sandbox_aurora3 skt$ 

Snugug’s picture

Please post your Gemfile. From that bash output, it doesn't appear as if you've included the compass-aurora gem in your Gemfile

skt’s picture

Yes, looks to be true...the Gemfile I'm using is unchanged from what was installed with Aurora 3, but now I see it's not what's on the project homepage (sorry, I'd assumed it would be). Here's what I have from the install:

# Pull gems from RubyGems
source 'https://rubygems.org'

# ~> Refers to all versions of the given gem on the current full version number, so it will be able to use any version of Compass Aurora until Compass Aurora 4.x.x. For a specific version of a gem, remove the ~>
gem 'toolkit', '~>1.0.0'
gem 'singularitygs', '~>1.0.7'
gem 'breakpoint', '~>2.0.2'

Added what's on the homepage, ran bundle install, and now bundle exec compass watch works. However, still having errors, will post a new issue. Thank you!

Snugug’s picture

Status: Active » Closed (fixed)