Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ActiveJob::Performs not being automatically extended #31

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions lib/active_record/associated_object/railtie.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ class ActiveRecord::AssociatedObject::Railtie < Rails::Railtie
end
end

initializer "object_association.setup" do
ActiveSupport.on_load :active_job do
require "active_job/performs"
ActiveRecord::AssociatedObject.extend ActiveJob::Performs
rescue LoadError
# We haven't bundled active_job-performs, so we're continuing without it.
end
initializer "active_job.performs" do
require "active_job/performs"
ActiveRecord::AssociatedObject.extend ActiveJob::Performs if defined?(ActiveJob::Performs)
rescue LoadError
# We haven't bundled active_job-performs, so we're continuing without it.
end

initializer "object_association.setup" do
ActiveSupport.on_load :active_record do
require "active_record/associated_object/object_association"
include ActiveRecord::AssociatedObject::ObjectAssociation
Expand Down
6 changes: 4 additions & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@

require "rails/railtie"
require "kredis"
require "active_job"
require "global_id"
require "debug"
require "logger"

require "active_record"
require "active_record/associated_object"

require "global_id"
require "active_job"
require "active_job/performs"

require "minitest/autorun"

# Simulate Rails app boot and run the railtie initializers manually.
Expand Down
Loading