We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We are porting a large Ruby site to .NET with NancyFx & Compass.
We make extensive use of compass mixins. We realized Compass doesn't support that yet.
I've dug through the code and managed to hack it to get it to work, it's actually very simple. In SassCompiler.Initialize() I've modified the line:
scssOption = engine.Execute("{:cache => false, :syntax => :scss}");
To
scssOption = engine.Execute(@"{:cache => false, :syntax => :scss, :load_paths => [""C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/compass-0.12.2/frameworks/compass/stylesheets""]}");
Also digging around I notice the that Compass' SassCompiler is a copy of the SassAndCoffee.Ruby one. So I've also submitted a similar issue there.
SassCompiler
SassAndCoffee.Ruby
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We are porting a large Ruby site to .NET with NancyFx & Compass.
We make extensive use of compass mixins. We realized Compass doesn't support that yet.
I've dug through the code and managed to hack it to get it to work, it's actually very simple. In SassCompiler.Initialize() I've modified the line:
To
Also digging around I notice the that Compass'
SassCompiler
is a copy of theSassAndCoffee.Ruby
one. So I've also submitted a similar issue there.The text was updated successfully, but these errors were encountered: