sass / sassc-rails

Integrate SassC-Ruby with Rails!
MIT License
707 stars 103 forks source link

SassC::SyntaxError: Error: malformed URL #135

Open rachmatm opened 4 years ago

rachmatm commented 4 years ago

on line 1:9 of ../../../.rvm/gems/ruby-2.6.0/gems/active_skin-0.0.12/app/assets/stylesheets/active_skin.sass from line 19:1 of app/assets/stylesheets/active_admin.css.scss

@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:400,"600","700

error when compiling: https://github.com/SoftwareBrothers/active_skin/blob/master/app/assets/stylesheets/active_skin.sass#L1

Please give me the best solution to this issue, thank you.

rakesh-rajwar commented 4 years ago

@rachmatm did you get the solution ? I am facing the same issue.

rakesh-rajwar commented 4 years ago

Got this issue fixed. The issue was with active_skin gem. In my case I was upgrading my app to rails 6 version and using latest version of active skin as 0.0.12. this gem has patch/fix which is not pushed to master as of now.

Now replaced to gem 'active_skin', '~> 0.0.12' to gem 'active_skin', github: 'SoftwareBrothers/active_skin' to get latest patch for it. works fine. Thank You.