rails generate rspec:install - no such file to load --sprockets/railtie (LoadError)

后端 未结 3 1364
广开言路
广开言路 2021-02-09 12:40

I\'m a RoR-Beginner and I started learning it with the RoR-Tutorial. Actually I\'m at this chapter (http://ruby.railstutorial.org/chapters/static-pages#top) and try to install

3条回答
  •  Happy的楠姐
    2021-02-09 13:14

    Seems like you've created your project with a later version (rails 3.1) of rails gem. Make sure you're using a gemset which only has rails 3.0.9 gems and then do rails new to create your project. This will make sure that the sprockets/railtie line would not occur in your application.rb

提交回复
热议问题