I have a rails app which was created with an older version of Rails.
1.1.4 I
think. Is there an automated way to update the rails related app files
to a
newer version.
A precise example would be prototype.js which gets updated with new
releases of
Rails.
I am happy to update this manually, I am just curious if there is a
Rails way
to do this?
I have a rails app which was created with an older version of Rails. 1.1.4I
think. Is there an automated way to update the rails related app files to
a
newer version.
From a command-line in your project root directory execute the
following:
rake rails:update
Also try running rake --tasks for a description of all available Rake
tasks.