Will there be official support for Rails >= 2.3

#21
Oh just to add - remember that we're using a regular expression to find the version. If it can't find the constant we're after rails_ver will end up being nil (similar to null in most other languages).

So you may want to check before using it:

Code:
if rails_ver.nil?
  # assume old way or throw exception
else
  # whatever you wish to do
end
 
Last edited:
Top