-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0af119
commit 722bb8e
Showing
4 changed files
with
54 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
module ActiveJob # :nodoc: | ||
module QueueAdapters # :nodoc: | ||
class GoudaAdapter < Gouda::Adapter | ||
end | ||
end | ||
# The sole purpose of this class is so that you can do | ||
# `config.active_job.queue_adapter = :gouda` in your Rails | ||
# config, as Rails insists on resolving the adapter module | ||
# name from the symbol automatically. If Rails ever allows | ||
# us to "register" an adapter to a symbol this module can | ||
# be removed later. | ||
class ActiveJob::QueueAdapters::GoudaAdapter < Gouda::Adapter | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters