Having a strange problem with a rails model I just created.
Here are my validations:
validates_presence_of :from_name, :message => \'Please provid
Upgrading to Version rails 2.3.9 fixes this problem
gem install -v 2.3.9 rails --include-dependencies
EDIT:
You also need to edit the config\environment.rb file to change the RAILS_GEM_VERSION.
RAILS_GEM_VERSION = '2.3.9'
EDIT #2:
I should note that version 2.3.9 is not the latest version of the 2.3.X branch, and you should upgrade the the latest version available.