0

I'm currently following Rails tutorial by Michael Hartl here.

To proceed with my application I did the following(as the book said):

rails generate scaffold User name:string email:string

However I'm getting the following errors:

enter image description here

  • Show your application.js requires block and sass-rails version – Sergey Sokolov Aug 07 '16 at 09:24
  • Firstly, please do not post pictures of your log. Instead, copy and paste the log directly to your question. Second, please find your `application.js` file and edit your question to include its full contents. – MarsAtomic Aug 07 '16 at 14:05

1 Answers1

0

This is quite strange, but i'd say you should probably run bundle install again. If that doesn't resolve it, then you should add to your Gemfile:

gem 'sass'

oreoluwa
  • 5,553
  • 2
  • 20
  • 27