View Single Post
  #3  
Old 03-18-2010, 10:57 AM
andreas andreas is offline
Senior Member
 
Join Date: Aug 2006
Posts: 91
The line is:
rails_ver = Rails::VERSION::STRING

it just means that this constant is not defined in older Rails versions. A simple (but dirty) workaround is to replace the line with

rails_ver = Rails::VERSION::STRING rescue '2.0.0'
Reply With Quote