-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
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
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-rails
gem and I got an error like this:NameError: uninitialized constant Sass::Deprecation
Then I realized that this gem was including the latest version of
sass
and it is requiring the modules individually in thelib/sassc/script.rb
file.I am not sure if this fix belongs here or the
require
is missing in somesass
file.Thoughts?