-
Notifications
You must be signed in to change notification settings - Fork 161
Require Sass::Deprecation module #68
Conversation
|
Yeah, the alternative would be |
|
@deivid-rodriguez I believe I did that same alternative in #70 This resolves #69 |
|
@beagleknight for reference sass/sass#2338 |
|
Given that |
|
@deivid-rodriguez that would be more futureproof, for sure, but I'm curious what the negative effects of this might be. @bolandrm is there a reason why we're picking and choosing sass functionality and not requiring the whole library? |
|
@bolandrm I don't mean to be a bother, but I was curious if you had an idea when of when we might expect a patch. This issue seems to be affecting a good number of folks and the entirety of our platform's integrators. Instead of having us patch manually, we were hoping for a fix from upstream. Thanks, and sorry for the prodding. |
|
I also ran into this issue yesterday. Would be great to see this / a patch merged and a new release. Thanks folks! |
|
Thanks all - please try out |
|
Thanks! I will try and report back. |
|
Thank you! 😄 |
|
Yes! Thank you! I can confirm that this took care of my error. |
|
I can also confirm it works with |
Hi there!
I was developing a rails application using the
sassc-railsgem and I got an error like this:NameError: uninitialized constant Sass::DeprecationThen I realized that this gem was including the latest version of
sassand it is requiring the modules individually in thelib/sassc/script.rbfile.I am not sure if this fix belongs here or the
requireis missing in somesassfile.Thoughts?