rails -1.2.3 to 2.1.1 ? how ?

now i am working in a rails project version 1.2.3 but i like to work in rails 2.1.1 i thing by freexe the 1.2.3 gemm into vendor will solve the problem but i have 35 plugin in my project(which is version 1.2.3) so i worried about freezeing old gem into vendeor

any help appreciated?

thanks

Pokkai Dokkai wrote:

now i am working in a rails project version 1.2.3 but i like to work in rails 2.1.1 i thing by freexe the 1.2.3 gemm into vendor will solve the problem but i have 35 plugin in my project(which is version 1.2.3) so i worried about freezeing old gem into vendeor

any help appreciated?

thanks

actually my problem is if i freeze the rails-1.2.3 gems into vendor and working in rails-2.1.1 then will my all plugin work properly ? thats why i am thing..

Pokkai Dokkai wrote: > now i am working in a rails project version 1.2.3 > but i like to work in rails 2.1.1 > i thing by freexe the 1.2.3 gemm into vendor will solve the problem > but i have 35 plugin in my project(which is version 1.2.3) > so i worried about freezeing old gem into vendeor

> any help appreciated?

> thanks

actually my problem is if i freeze the rails-1.2.3 gems into vendor and working in rails-2.1.1 then will my all plugin work properly ? thats why i am thing..

If you are asking whether your old app will work after you freeze rails 1.2.3 into the project and then upgrade your gems then yes. That's the point of freezing. You 1.2.3 app won't use the new gems at all.

If you are asking about whether all those plugins will work with 2.1.1, then maybe, maybe not. Check the website for each plugin and see what they say about their plugin's compatibility (but I'd guess at least some of them would need updating)

Fred