mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
e380ac685b
* This allows for easier reading, since those are two words, so they should be split by _ Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
21 lines
466 B
Ruby
21 lines
466 B
Ruby
if ENV['AJ_ADAPTER'] == 'delayed_job'
|
|
generate "delayed_job:active_record", "--quiet"
|
|
rake("db:migrate")
|
|
end
|
|
|
|
initializer 'activejob.rb', <<-CODE
|
|
require "#{File.expand_path("../jobs_manager.rb", __FILE__)}"
|
|
JobsManager.current_manager.setup
|
|
CODE
|
|
|
|
file 'app/jobs/test_job.rb', <<-CODE
|
|
class TestJob < ActiveJob::Base
|
|
queue_as :integration_tests
|
|
|
|
def perform(x)
|
|
File.open(Rails.root.join("tmp/\#{x}"), "w+") do |f|
|
|
f.write x
|
|
end
|
|
end
|
|
end
|
|
CODE
|