Rails Tutorial Error With Cloud 9

你离开我真会死。 提交于 2019-11-29 05:11:11

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.)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!