blob: 74bec2158a862b3d9b085df377dad15193cc1e3b (
plain)
1
2
3
4
5
6
7
8
9
|
# This file is used for loading all your models. Note that you don't have to actually use
# this file. The great thing about Ramaze is that you're free to change it the way you see
# fit.
# Here go your requires for models:
# require __DIR__('user')
Dir[File.dirname(__FILE__) + '**/*.rb'].each do |file|
load file unless file == __FILE__
end
|