I took the Ruby on Rails technical test of RUNTEQ, and the following error occurred while building the environment.
Enter the following command in the terminal
Terminal
bundle install --path=vendor/bundle
Then the following error occurs at the final stage
Terminal
Ruby Sass has reached end-of-life and should no longer be used.
* If you use Sass as a command-line tool, we recommend using Dart Sass, the new
primary implementation: https://sass-lang.com/install
* If you use Sass as a plug-in for a Ruby web framework, we recommend using the
sassc gem: https://github.com/sass/sassc-ruby#readme
* For more details, please refer to the Sass blog:
https://sass-lang.com/blog/posts/7828841
It seems to be a note about what you are using. When I try to translate with google
Terminal
Ruby Sass is no longer supported and should not be used.
*If you want to use Sass as a command line tool, we recommend using the new Dart Sass.
Main implementation: https://sass-lang.com/install
*If you want to use Sass as a plugin for the Ruby web framework,
sassc gem:https://github.com/sass/sassc-ruby#readme
*See the Sass blog for more information.
https://sass-lang.com/blog/posts/7828841
That said, I am using a different command line tool, so this time it seems to be a caution that occurred when using sass with the second Rais, when I jump to github as described and check the README Correspondence was written.
Gemfile
gem 'sassc'
It seems that you should describe here. After that, bundle install was completed successfully.
・ What is sass? I will write it later
Recommended Posts