rails / sass-rails

Ruby on Rails stylesheet engine for Sass

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installation fails on Windows/Jruby 9.3.9.0

TheSynthMaster opened this issue · comments

commented

Trying to upgrade from rails 5 to a new installation, installed jruby last version 9.3.9.0 and trying to

gem install sass-rails

returns

C:\asset\applications\asestero_new>gem install sass-rails
Building native extensions. This could take a while...
ERROR: Error installing sass-rails:
ERROR: Failed to build gem native extension.

current directory: C:/asset/jruby-9.3.9.0/lib/ruby/gems/shared/gems/sassc-2.

4.0/ext
C:/asset/jruby-9.3.9.0/bin/jruby.exe -I C:/asset/jruby-9.3.9.0/lib/ruby/stdlib -
r ./siteconf20221110-8908-oh7pcn.rb extconf.rb
creating Makefile

current directory: C:/asset/jruby-9.3.9.0/lib/ruby/gems/shared/gems/sassc-2.4.0/
ext
make DESTDIR= clean
current directory: C:/asset/jruby-9.3.9.0/lib/ruby/gems/shared/gems/sassc-2.4.0/
ext
make DESTDIR=
make failedCannot run program "make" (in directory "C:\asset\jruby-9.3.9.0\lib\r
uby\gems\shared\gems\sassc-2.4.0\ext"): CreateProcess error=2, The system cannot
find the file specified

Gem files will remain installed in C:/asset/jruby-9.3.9.0/lib/ruby/gems/shared/g
ems/sassc-2.4.0 for inspection.
Results logged to C:/asset/jruby-9.3.9.0/lib/ruby/gems/shared/extensions/univers
al-java-1.8/2.6.0/sassc-2.4.0/gem_make.out

commented

The problem is the requirement of sassc-rails, if I delete that requirement the gem is installed (but it does not work because it still requires sassc for some reason). I have version 5.0.6 and it does not require sassc. That was introduced in 6.0.0 beta 2 (why? jruby was forgotten?)

SassC requires a C compiler.

install a devkit https://rubyinstaller.org/downloads/
run ridk enable
jruby -S gem install sassc

this way you should be able to install and use the gem on JRuby + Windows. see sass/sassc-ruby#182

there are ways that could improve the situation and remove the requirement, but it's unlikely to ever happen since the gem isn't maintained anymore.