-
Notifications
You must be signed in to change notification settings - Fork 27
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
Error when using sassc-rails #13
Comments
I haven't used this gem with sassc-rails. |
I'm thinking about trying to fix this because we just hit this issue as I wanted to remove ruby sass as it's EOL now. @lightyrs what approach do you prefer? Checking sassc presence first and fallback to sass or can we just use sassc since sass isn't supported anymore? |
@vbalazs Ideally we would provide backwards compatibility (sassc fallback to sass), however, if sass isn't actually required as a dependency (and maybe it doesn't need to be), then getting rid of it would be the best approach (I think). |
What is the purpose of this sass setup? What do you think about adding |
That seems look a good plan @vbalazs. |
Is there a work around this? |
@alejandrodevs in the referenced closed PR, you can find some solutions |
Why don't we merge this fix? |
@alejandrodevs I'm just curious about backwards-compatibility and it doesn't seem like the readme reflects anything about these changes. |
@lightyrs what about having a new version with this fix and support the old one in another development line to for a while until we decided to stop supporting it. What do you think? |
Honestly, I'd need someone else to help manage the project. I don't really use tabler anymore but I still see the value in this project. Any interest? |
Hi and many thanks for your work to build a Ruby gem for tabler UI.
I've started with a fresh Rails (5.2.2.1) app which uses
sassc-rails
instead ofsass-rails
due to the deprecation warnings for sass.When I start the (development) server with
rails s
I get the following error:I think this error originates from your
require 'sass'
statement in line 53 of the rubygem.rb file. Currently I use the following work aroundDo you have any idea why this isn't working?
Many thanks..!
The text was updated successfully, but these errors were encountered: