Difference between revisions of "Troubleshoot Sass"

From rbachwiki
Jump to navigation Jump to search
(Created page with "== Error: == <pre> error sass/style.scss (C:/Ruby23-x64/lib/ruby/2.3.0/tempfile.rb:133:in `initialize': No such file or directory @ rb_sysopen - G:/Dropbox/All Folders/websit...")
 
 
Line 13: Line 13:
# Require any additional compass plugins here.
# Require any additional compass plugins here.
</pre>
</pre>
----
[[#Error:|Back To Top]]-[[Main_Page| Home]] - [[Css|Category]]

Latest revision as of 15:55, 9 August 2016

Error:

error sass/style.scss (C:/Ruby23-x64/lib/ruby/2.3.0/tempfile.rb:133:in `initialize': No such file or directory @ rb_sysopen - G:/Dropbox/All Folders/websites/90websites/outwaterlocal/tutorials/susy/susyex/.sass-cache/75fcaf1b4852ceb732871195e41567cc2a7d8997/C%058/Ruby23-x64/lib/ruby/gems/2.3.0/gems/compass-core-1.1.0.alpha.3/stylesheets/compass/utilities/general/_hacks.scssc20160725-12544-1cuy1cb)

Fix: uncomment the require 'compass/import-once/activate'

  require 'susy'
#require 'compass/import-once/activate'
require 'breakpoint'
# Require any additional compass plugins here.

Back To Top- Home - Category