(very not familiar with ruby/gem/sass/compass)
I have installed on my Ubuntu server 22.04, ruby 3.2.1, gem 3.4.10, sass 3.7.4 and compass 1.0.3 for a very small project. I followed a tuto to get everyting installed.
But when I run compass watch, I get this issue:
NoMethodError on line ["89"] of $HOME/.asdf/installs/ruby/3.2.1/lib/ruby/gems/3.2.0/gems/compass-1.0.3/lib/compass/configuration/helpers.rb: undefined method `exists?' for File:Class Run with --trace to see the full backtrace
I checked my dear friend Google, but since I'm not familiar with that, I don't know where to look at... That's why I'm here ^^
Any idea to help me to fix this?
Before being on Ubuntu 22.04, I was on 18.04 and it was working like a charm.
Thanks in advance.
exists?
to its correspondingexist?
method. – Florri