diaspora/app/models/jobs/base.rb
Maxwell Salzberg 05816733ce alias job
2011-09-16 10:14:32 -07:00

12 lines
314 B
Ruby

# Copyright (c) 2010-2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
module Jobs
class Base
Dir["#{Rails.root}/app/models/jobs/mail/*.rb"].each {|file| require file }
extend ResqueJobLogging
end
end
Job = Jobs