Rails-4, ExecJS::ProgramError in Pages#welcome

后端 未结 8 1848
臣服心动
臣服心动 2020-11-27 22:06

I am trying to add login-logout functionality to my rails app. For that I added bcrypt gem for password encryption and also access controller. Now when I run it

8条回答
  •  死守一世寂寞
    2020-11-27 22:22

    There is a problem with coffee-script-source 1.9.0 running on windows.

    It seems you have to add this to your gemfile:

    gem 'coffee-script-source', '1.8.0'
    

    then do

    bundle update coffee-script-source
    

提交回复
热议问题