8

This is in addition to this post: Can't compile rwd skin SCSS in Magento CE 1.9

Windows 8.1 / PowerShell
Compass 1.0.1 (Polaris)
Sass 3.4.6 (Selective Steve)
ruby 2.1.3p242 (2014-09-19 revision 47630) [x64-mingw32]

I removed the " from a:not(".button") > a:not(.button)

New error:

"NoMethodError: undefined method `specificity' for [:not(.block-layered-nav)]:Array";

Commented out the block then I get:

"NoMethodError: undefined method `specificity' for [:not(:last-child)]:Array"
Community
  • 1
  • 1
Jon C.
  • 374
  • 1
  • 4
  • 14

1 Answers1

16

This appears to be a known issue with Sass 3.4.6. You'll need to downgrade to 3.4.5 until this is fixed.

cimmanon
  • 67,211
  • 17
  • 165
  • 171
  • Considering that most people will have installed Compass and not SASS directly, which version of Compass correlates to SASS 3.4.5? – pspahn Oct 20 '14 at 20:47
  • @pspahn As long as you're using Compass 1.0 or newer, it should be compatible with any version of Sass 3.3 or newer. So if you're doing a fresh install of Compass, it will just grab the newest stable version of Sass. – cimmanon Oct 20 '14 at 20:55
  • 2
    @cimmanon Thanks - I just needed to: `gem uninstall sass` then `gem install sass -v 3.4.5` All good. – pspahn Oct 20 '14 at 21:54
  • as @pspahn said: gem uninstall sass && gem install sass -v 3.4.5 works, try with sudo if you require it – academo Oct 25 '14 at 00:49