Error when trying to start server after upgrading to Rails 3

前端 未结 2 842
傲寒
傲寒 2021-01-19 06:51

I\'ve just upgraded to Rails 3, using the instructions from this railscast. When I try to start the server, this is what happens:

$ rails s
script/rails:6:in         


        
2条回答
  •  面向向阳花
    2021-01-19 07:26

    Have you actually installed the rails 3.0.x gem? Maybe you missed this step :).

    It looks like your script/rails script cannot find the included file from rails gem. You need to install all needed gems separately for each version of Ruby you're using (e.g. 1.8.7 and 1.9.2).

提交回复
热议问题