Changeset 295

Show
Ignore:
Timestamp:
12/21/07 11:34:31 (8 months ago)
Author:
gethema..@gmail.com
Message:

check in fix for passing models around

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/server/master_worker.rb

    r294 r295  
    152152      model_root = RAILS_HOME + "/app/models" 
    153153      models = Dir["#{model_root}/**/*.rb"] 
    154       models.each { |x| require x } 
     154      models.each { |x| 
     155        begin 
     156          require x 
     157        rescue 
     158        end 
     159      } 
    155160    end 
    156161