-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from doximity/jcw/update_docs_and_version_for_…
…v1_rc1 Updates to misc documents and the version for rc1
- Loading branch information
Showing
6 changed files
with
53 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,29 @@ | ||
## List of All Known Code Contributors to Simplekiq | ||
|
||
### Jack Noble | ||
### Jack Noble (Doximity) | ||
* Collaborated on initial concept | ||
* Wrote the majority of the code as of initial release | ||
* Helpful contributions to maintenance of specs, README, etc | ||
|
||
### John Wilkinson | ||
### John Wilkinson (Doximity) | ||
* Collaborated on initial concept | ||
* Conducted the gem extraction and release | ||
|
||
### Brian Dillard | ||
### Jason Hagglund (Doximity) | ||
* Finagled a way into getting us the ability to specify `sidekiq-pro` as an explicit dependency despite it not being publicly available and without exposing it to the public in the process. | ||
|
||
### Brian Dillard (Doximity) | ||
* Added additional comment documentation | ||
* Added support for `on_complete` batch callback support in `Simplekiq::BatchingJob` | ||
|
||
### Austen Madden | ||
### Austen Madden (Doximity) | ||
* Fixed bug with batch statuses in callbacks for empty batches | ||
|
||
### Tiffany Troha | ||
### Tiffany Troha (Doximity) | ||
* Added support for specifying `sidekiq_options` for the child job in `Simplekiq::BatchingJob` | ||
|
||
### [Daniel Pepper](https://github.com/dpep) | ||
* On request, graciously took down his unused `simplekiq` placeholder from rubygems so we could continue using the name :raised_hands: | ||
|
||
### [Jeremy Smith](https://github.com/jeremysmithco) | ||
* Helpfully and respectfully nudged us towards loosening our sidekiq version requirement |
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,9 +1,10 @@ | ||
source "https://rubygems.org" | ||
|
||
source "https://enterprise.contribsys.com/" do | ||
gem "sidekiq-ent" | ||
gem "sidekiq-pro" | ||
gem "sidekiq-pro", "5.2.1" | ||
end | ||
|
||
gem "sidekiq", "6.1.0" | ||
|
||
# Specify your gem's dependencies in simplekiq.gemspec | ||
gemspec |
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,3 +1,3 @@ | ||
module Simplekiq | ||
VERSION = "0.0.3" | ||
VERSION = "0.1.0" | ||
end |