sassc-ruby
sassc-ruby copied to clipboard
Use libsass with Ruby!
fedora 31 rvm ruby 2.6.5 gem install sassc Building native extensions. This could take a while... ERROR: Error installing sassc: ERROR: Failed to build gem native extension. current directory: /home/artur/.rvm/gems/ruby-2.6.5/gems/sassc-2.2.1/ext...
The static gem you distribute is built against glibc 2.14, which we don't have available. I'm looking at building my own static gem using our GCC8 on glibc 2.12, and...
Termux
My ultimate goal is running Jekyll and Rails on Termux, both of which require sassc. I tried this from #153 > > > ``` > gem 'sassc', '~> 2.1.0' >...
Native code doesn't compile anymore since version 2.1.0 on FreeBSD ``` linking shared-object sassc/libsass.so /usr/bin/ld: unrecognized option '-plugin' /usr/bin/ld: use the --help option for usage information c++: error: linker command...
`assert_type` (part of [EvaluationContext](http://sass-lang.com/documentation/Sass/Script/Functions/EvaluationContext.html)) causes errors in ruby-extensions. **Test/example:** ``` ruby def test_function_that_asserts_a_type engine = Engine.new("$value: attempt_assertion('abc');") engine.render end private module Script::Functions def attempt_assertion str assert_type str, :String end end...
[See the build result here](https://travis-ci.org/owen2345/camaleon-cms/jobs/637090377#L731). sassc gem 2.2.1 ruby 2.5.5 rails 5.2.4.1 I see some other issues related to segfaults with sprockets 4, but none that match these specifics: test...
Version: 2.2.1 This style is compiling to CSS correctly: ``` .base { &:not(&--no-matches-message) { overflow: hidden; } } ``` Compiled CSS: ``` .base:not(.base--no-matches-message) { overflow: hidden; } ``` With a...
Hello, while installing the gem I've got the problem to compile the extension. ``` $ gem install sassc -v '2.2.0' --source 'https://rubygems.org/' Building native extensions. This could take a while......
The optimisations tunes introduced in commit https://github.com/sass/sassc-ruby/commit/5f98917e5cdaf3ee3b9b0c9ce26878cc7320a4fb unfortunately breaks the portability between different processor architectures causing issues such as #146 While this issue could be mitigated by simply reinstalling with...
I would like to install `activeadmin` by adding `gem 'activeadmin'` in the Gemfile. But I am getting the bundler error related with `sacssc`. ruby -v 2.4 rails -v 5.1.6 ```...