RoR - How to remove Rails 4.1.1 version?

前端 未结 2 440

I am new to RoR and I tried to follow the Ruby on Rails Tutorial from Micheal Hartl. Before starting the tutorial I already set up everything earlier and updated the Rails v

2条回答
  •  孤街浪徒
    2021-01-03 07:47

    If you're using bundler (which is highly recommended), you should be able to use different versions of gems for different applications

    --

    Have you tried this:

    In your Gemfile, make sure you have the correct version of Rails referenced -
    gem 'rails', '3.2.0'

    In your app directory - bundle install

    --

    This will use bundler to install the respective gems for your app, which can change as required

提交回复
热议问题