compilation - Sass was working fine for 6 months but not compiling anymore -


i have been using sass 6 months. working sass not compile.

  • the version of sass is: 3.2.14
  • the version of compass is: 0.12.2
  • the version of ruby is: 2.2.0
  • os is: windows 8

problem: sass not compiling.

accessing the path in ruby, no problem. ruby reads:

"sass watching changes. press crtl-c stop."

i'm using _partials , have imported them correctly input.scss file.

example import

@import '_footer', '_columns', '_content', '_h1-h6', '_mobile', '_home' ;

i using adobe dreamweaver 5.5 text editor.

what have tried in effort troubleshoot:

  1. one one, have eliminated each partial @import see if there coding problem. did not work!
  2. restarted dreamweaver
  3. restarted pc
  4. uninstalled ruby , re-installed ruby

i message in command line: [sass] nomethoderror: undefined method `perform' nil:nilclass

i'm not sure else can do, please help.

sass partials not require underscore when being imported. underscore required in filename though, tells compiler not create separate css file corresponding partial. however, while importing should

@import "footer", "columns";

reference: @ how sass based frontend framework foundation imports partials https://github.com/zurb/foundation/blob/master/scss/foundation.scss

even though files named underscore here (https://github.com/zurb/foundation/tree/master/scss/foundation/components)

also, error code related , not compiler related. refer sass error on compilation nomethoderror: undefined method `count' nil:nilclass use --trace backtrace

i had same problem , non standard ie gradient filters had copy pasted website. let me know if solves you


Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -