-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Perform disconnect on after_fork on all Mongoid versions
- Loading branch information
1 parent
d915199
commit fce5b3e
Showing
10 changed files
with
29 additions
and
97 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
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
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,14 +1,13 @@ | ||
Gem::Specification.new do |spec| | ||
spec.add_dependency 'delayed_job', ['>= 3.0', '< 5'] | ||
spec.add_dependency 'mongoid', ['>= 3.0', '< 8'] | ||
spec.add_dependency 'mongoid-compatibility', '>= 0.4.0' | ||
spec.authors = ['Chris Gaffney', 'Brandon Keepers', 'Erik Michaels-Ober'] | ||
spec.email = ['[email protected]', '[email protected]', '[email protected]'] | ||
spec.files = %w[CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md delayed_job_mongoid.gemspec] + Dir['lib/**/*.rb'] | ||
spec.homepage = 'http://github.com/collectiveidea/delayed_job_mongoid' | ||
spec.licenses = ['MIT'] | ||
spec.name = 'delayed_job_mongoid' | ||
spec.require_paths = ['lib'] | ||
spec.summary = 'Mongoid backend for delayed_job' | ||
spec.version = '2.3.2' | ||
spec.add_dependency 'mongoid', '>= 5.0' | ||
spec.authors = ['Chris Gaffney', 'Brandon Keepers', 'Erik Michaels-Ober'] | ||
spec.email = ['[email protected]', '[email protected]', '[email protected]'] | ||
spec.files = %w[CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md delayed_job_mongoid.gemspec] + Dir['lib/**/*.rb'] | ||
spec.homepage = 'http://github.com/collectiveidea/delayed_job_mongoid' | ||
spec.licenses = ['MIT'] | ||
spec.name = 'delayed_job_mongoid' | ||
spec.require_paths = ['lib'] | ||
spec.summary = 'Mongoid backend for delayed_job' | ||
spec.version = '3.0.0' | ||
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 was deleted.
Oops, something went wrong.
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,7 +1,6 @@ | ||
require 'delayed/backend/mongoid' | ||
require 'delayed/serialization/mongoid' | ||
require 'delayed_job' | ||
require 'delayed/plugins' | ||
require 'delayed/yaml/yaml_ext' | ||
|
||
Delayed::Worker.backend = :mongoid |
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 was deleted.
Oops, something went wrong.