sassc-ruby
sassc-ruby copied to clipboard
Use libsass with Ruby!
How do I migrate this ruby sass custom function to SassC? In a rails project, I just included this module in my application.rb and the likes of `my-method` would be...
My /tmp dir is a mounted RAM disk with 64MB, it appears this is not enough to compile sassc. I try to override it with: ``` TMPDIR=/data/tmp sudo gem install...
Hello, I upgraded sassc to 2.2.1, and my production Rails app is now crashing when I visit my ActiveAdmin dashboard. Here are the crash logs from my server: https://gist.github.com/ndbroadbent/3d0f78235dc9056ca9eb9464d53b4a9c ```...
I also submitted this issue to sassc-rails (https://github.com/sass/sassc-rails/issues/138). ## How to reproduce: `$ bundle add sassc-rails` on a raspberry pi 4 (balena 64bit OS 2.44.0+rev3) ## Observation: ``` ... [main]...
I'm trying to compile on macos with rails 5. ``` compiling ./libsass/src/c2ast.cpp linking shared-object sassc/libsass.bundle strip: libsass.bundle: unknown load command 0x32 strip: libsass.bundle: unknown load command 0x32 strip:libsass.bundle: File format...
- [x] ! write VERSION file with the version from gemspec, if no .git available
`sassc-ruby v2.2.1` Sass code: ```scss @mixin test { & &__elem:not(&__elem_selected) { color: red; } } .foo { @include test; } .bar { @include test; } ``` Compiled CSS: ```css .foo...
I was able to reproduce #151 using Docker. I added a test case that simply renders `a { color: lighten(#abc, 0%); }`. The test is successfull on Ubuntu 14.04 64-bit...
So I am on Ubuntu 14.04 32-bit. After upgrade to sassc 2.2.0 I noticed weird colors on my website. Running the following code: `SassC::Engine.new("a {color: darken(#33aa66, 10%);}\n", style: :compressed).render` **Expected...
Please consider using a amalgamation of the libsass source for this repository. One of my main complaints about this library is that it is excessively slow to compile. This isn't...