How to create a project with an older version of rails

Hi,
I have installed Rails 3 on my local machine. Let’s say I wan’t to
create a new project but in version 2.3.5, can I do that?

Greg

On Fri, 2010-09-17 at 14:48 +0200, Greg Ma wrote:

Hi,
I have installed Rails 3 on my local machine. Let’s say I wan’t to
create a new project but in version 2.3.5, can I do that?

Easiest way is probably to use an RVM gemset which just contains 2.3:
http://rvm.beginrescueend.com/gemsets/basics/


http://jonathanleighton.com/

Yes you can do that . Install rails version 2.3.5 by using command gem
install rails -v=2.3.5 . And for creating a project rails _v_2.3.5 . Use this command you will achive your result.

On Fri, Sep 17, 2010 at 6:44 PM, Jon L.
[email protected]wrote:


Thanks & Regards,
MuraliDharaRao.T
+91-9642234646

On Sep 17, 6:17 am, murali dhararao [email protected] wrote:

Yes you can do that . Install rails version 2.3.5 by using command gem
install rails -v=2.3.5 . And for creating a project rails _v_2.3.5 . Use this command you will achive your result.

The command is:
$ rails 2.3.x [app_name]


Eric