using rails 1.2.6, is it worth switching to 2.0 now ? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> using rails 1.2.6, is it worth switching to 2.0 now ?By "using" do you mean a site in production? Or a site just beginning development? Or your personal blog? How important is uptime? How much time do you have to find any problems (in your code and in your plugins)? How much do you care? Why do you want to switch? If it were me and it was a production site I cared about and I didn''t need something in 2.0 I would leave it alone until 2.0.1 comes out. Or something close to that. + 2 cents. -philip --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Philip Hallstrom pisze:>> using rails 1.2.6, is it worth switching to 2.0 now ? > > By "using" do you mean a site in production? Or a site just beginning > development? Or your personal blog? How important is uptime? How much > time do you have to find any problems (in your code and in your plugins)? > How much do you care? Why do you want to switch? > > If it were me and it was a production site I cared about and I didn''t need > something in 2.0 I would leave it alone until 2.0.1 comes out. Or > something close to that. > > + 2 cents. > > -philip > > > >its personal site, just for fun, i just wonder if hdd says that 2.0 is not revolutionary, maybe it isnt worth it. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I''d start it on the 2.0 RC if it''s a personal site but for no particular reason other than I absolutely love some of the improvements! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Philip Hallstrom wrote:>> using rails 1.2.6, is it worth switching to 2.0 now ? > > By "using" do you mean a site in production? Or a site just beginning > development? Or your personal blog? How important is uptime? How much > time do you have to find any problems (in your code and in your > plugins)? > How much do you care? Why do you want to switch? > > If it were me and it was a production site I cared about and I didn''t > need > something in 2.0 I would leave it alone until 2.0.1 comes out. Or > something close to that. > > + 2 cents. > > -philipi am with philip. if you notice in the 2.0 release notes, there are notes for ruby to help you change your code to remove depreciated code. then you have to worry your server works. i would let the bleeding edge developers, come back from the hospital, before you jump in there. you have to be sure your server works/supports 2.0. that is a big deal. CAN a server have multiple versions of ruby, and also rails, installed. where is that fred guy? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Dec 2, 2007 2:29 PM, Trent Black <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Philip Hallstrom wrote: > >> using rails 1.2.6, is it worth switching to 2.0 now ? > > > > By "using" do you mean a site in production? Or a site just beginning > > development? Or your personal blog? How important is uptime? How much > > time do you have to find any problems (in your code and in your > > plugins)? > > How much do you care? Why do you want to switch? > > > > If it were me and it was a production site I cared about and I didn''t > > need > > something in 2.0 I would leave it alone until 2.0.1 comes out. Or > > something close to that. > > > > + 2 cents. > > > > -philip > > i am with philip. > > if you notice in the 2.0 release notes, there are notes for ruby to help > you change your code to remove depreciated code. then you have to worry > your server works. i would let the bleeding edge developers, come back > from the hospital, before you jump in there. you have to be sure your > server works/supports 2.0. that is a big deal. > > CAN a server have multiple versions of ruby, and also rails, installed.Absolutely, it''s not all that hard to compile multiple versions of ruby so that they co-exist on a single server, and gem makes it very easy to have multiple versions of rails installed. Managing which versions you''re using in what place can be fiddly but also isn''t very hard. That said, when deploying to production it is best to freeze rails into your application. That way you know you can upgrade the version of rails you''re running on your own schedule. If you have good test coverage then upgrading to a new version should be pretty easy and safe. Simply update the version of rails you have in your vendor folder, run your tests and fix any issues that come up. I''d have no qualms about updating an app with a good test suite to rails 2.0, and regularly deploy apps based on versions of rails pretty close to Edge. James. -- James Stewart - Web Developer Work : http://jystewart.net/process/ Play : http://james.anthropiccollective.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Many of them started working on rails 2.0, Is there any good tutorial for that. If yes, please put the material links here. Thanks -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Isn''t it funny how putting the words "Rails 2.0 Tutorial" into a search engine, provided none-the-less by the same company who hosts this wonderful mailing list would actually result in the SECOND result being a Rails 2.0tutorial! Whodathunkit? http://www.google.com.au/search?hl=en&q=Rails+2.0+tutorial&btnG=Google+Search&meta On Dec 17, 2007 3:06 PM, Subash Manickam <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Many of them started working on rails 2.0, Is there any good tutorial > for that. If yes, please put the material links here. > > Thanks > -- > Posted via http://www.ruby-forum.com/. > > > >-- Ryan Bigg http://www.frozenplague.net --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---