0

I want to run the rails project having RAILS_GEM_VERSION = '2.3.8' I have some of my running project with rails version is 3.2.11....how do I proceede

Niket
  • 1,105
  • 12
  • 15

1 Answers1

0

Edit your Gemfile and replace the rails gem line with :

gem "rails", "2.3.8" 
yarakyo
  • 499
  • 3
  • 6
  • I have complete project in rails 2.8.3 but i want to deploy it on my server which have some projects running in 3.2.11. – Niket Aug 01 '13 at 13:22
  • Are you using rvm? You can control what version of ruby you want to use with rvm. You can also specify which version of gems you want to use by creating a gemset for a particular project. More info here on gemsets : https://rvm.io/gemsets/basics – yarakyo Aug 01 '13 at 13:31