Migrating Your Rails App From 1.2.2 to 1.2.3
Posted by Scott on Mar 16th, 2007
For those of you updating your rails apps from v1.2.2 to v1.2.3 (released a couple of days ago), here’s all you need to change:
config/boot.rb, line 6:
unless RUBY_PLATFORM =~ /(:?mswin|mingw)/
config/environment.rb, line 8:
RAILS_GEM_VERSION = '1.2.3' unless defined? RAILS_GEM_VERSION
That’s it.