--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/-GwOpn34jqsJ.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hi Jason,
Thanks for the awesome brilliant reply, it’s been a great help to me.
Gurdipe
Hi Chirag ,
Thanks mate, I'll definitely checkout these rails casts out.
Gurdipe
Make sure your automated test coverage is complete before you start,
then you can be reasonably confident, when you have finished, that all
is working.
Colin
>
> It is currently using:
>
> Ruby version 1.8.7 and
> Ruby on Rails version 2.3.5
>
> Is there any information, tutorial, guides etc. I can follow
>
> Any help would be greatly appreciated
>
> Kind Regards
>
> Gurdipe
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Talk" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/rubyonrails-talk/-/-GwOpn34jqsJ.
> To post to this group, send email to rubyonra...@googlegroups.com.
> To unsubscribe from this group, send email to
> rubyonrails-ta...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/rubyonrails-talk?hl=en.
In addition to the other advice, overriding ActiveRecord callbacks was
deprecated in 2.3.8. So replace
def before_save
# whatever
end
with:
before_save :whatever
private
def whatever
# whatever
end
HTH,
Jeffrey
get a core group (start with models, then controllers, minimum of models) passing in 2.3.5
then upgrade
you'll find a great number of plugins and gems will need to be upgraded - and some will have to be hand patched if you cannot find a suitable replacement
Jodi
> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
There are no bug or security fixes for 2.x. Nor if I understand the policy
correctly, 3.0.x.
I'd suggest moving to 2.3.14 first before jumping to 3.x.
Jeffrey