Trying to get this to work, but I\'m having trouble. I\'m following the instructions at: https://www.railstutorial.org/book/beginning#cha-beginning
I get to 1.3.2 an
Looks like the tutorial has just recently fallen out of date. If you update your gemfile from
gem 'sass-rails', '5.0.1'
to
gem 'sass-rails', '5.0.2'
then bundle install again and launch the server, it should work just fine.
(If you prefer, you can also run a workaround by adding
gem 'sass', '3.4.13'
before your existing, non-updated line:
gem 'sass-rails', '5.0.1'
in your gemfile, and doing a bundle install and launching the server. I don't know why you'd need to, though.)