Hello, I have a issue with Rails and the constant new versions that are coming out such as Rails 2.1. It seems that commands such as below seem to change as new versions are being released. For example the controller below does not work anymore at least with Heroku.com class MyTestController < ApplicationController def Index render :text => "Hello, World!" end end Any ideas on how to keep up with the changes? 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 -~----------~----~----~----~------~----~------~--~---
A few options for you: 1. Become an avid learner... and soak in things as they go into edge so you''re ahead of the curve. A good resource for this is: http://www.ryandaigle.com 2. Freeze whatever version of rails you''re comfortable with into your vendor folder. A quick google search for "freeze rails" will give you lots of good resources including this one: http://support.tigertech.net/freeze-rails 3. Use a platform that changes less. PHP or Java come to mind but I''m not too familiar with either. I highly discourage this route :D On Jun 10, 5:00 pm, Brian Scott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Hello, > > I have a issue with Rails and the constant new versions that are coming > out such as Rails 2.1. It seems that commands such as below seem to > change as new versions are being released. > > For example the controller below does not work anymore at least with > Heroku.com > > class MyTestController < ApplicationController > def Index > render :text => "Hello, World!" > end > end > > Any ideas on how to keep up with the changes? > > Thanks > -- > Posted viahttp://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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hey Brian - On 10-Jun-08, at 8:29 PM, mel ram wrote:> > A few options for you: > > 1. Become an avid learner... and soak in things as they go into edge > so you''re ahead of the curve. A good resource for this is: > http://www.ryandaigle.com > > 2. Freeze whatever version of rails you''re comfortable with into your > vendor folder. A quick google search for "freeze rails" will give you > lots of good resources including this one: http://support.tigertech.net/freeze-rails > > 3. Use a platform that changes less. PHP or Java come to mind but I''m > not too familiar with either. I highly discourage this route :D > > On Jun 10, 5:00 pm, Brian Scott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > wrote: >> Hello, >> >> I have a issue with Rails and the constant new versions that are >> coming >> out such as Rails 2.1. It seems that commands such as below seem to >> change as new versions are being released. >> >> For example the controller below does not work anymore at least with >> Heroku.com >> >> class MyTestController < ApplicationController >> def Index >> render :text => "Hello, World!" >> end >> end >> >> Any ideas on how to keep up with the changes? >> >> Thanks >>In addition I suggest improving your test coverage - then when you''re ready to ''test'' out a new release your tests will provide you with all known issues to resolve. Jodi --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
The Rails Envy podcast (www.railsenvy.com) is a great way to keep up. The show notes are useful even if you don''t listen to the podcast. At BuildingWebApps (www.BuildingWebApps.com/topic/5) we post links to singificant new blog posts and such as we find them. Michael www.BuildingWebApps.com www.LearningRails.com On Jun 10, 5:00 pm, Brian Scott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Hello, > > I have a issue with Rails and the constant new versions that are coming > out such as Rails 2.1. It seems that commands such as below seem to > change as new versions are being released. > > For example the controller below does not work anymore at least with > Heroku.com > > class MyTestController < ApplicationController > def Index > render :text => "Hello, World!" > end > end > > Any ideas on how to keep up with the changes? > > Thanks > -- > Posted viahttp://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 -~----------~----~----~----~------~----~------~--~---