summaryrefslogtreecommitdiff
path: root/queries/init.rb
blob: bd096f99eed48a081446b7b1f01ef2ad8ff71eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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
class FindAllProjects

end