-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use ReduxMutex to make sure parallel ancenstors don't enqueue the sam…
…e job multiple times
- Loading branch information
Showing
4 changed files
with
53 additions
and
5 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "gush" | ||
spec.version = "1.1.1" | ||
spec.version = "1.2.0" | ||
spec.authors = ["Piotrek Okoński"] | ||
spec.email = ["[email protected]"] | ||
spec.summary = "Fast and distributed workflow runner based on ActiveJob and Redis" | ||
|
@@ -21,6 +21,7 @@ Gem::Specification.new do |spec| | |
spec.add_dependency "connection_pool", "~> 2.2.1" | ||
spec.add_dependency "multi_json", "~> 1.11" | ||
spec.add_dependency "redis", ">= 3.2", "< 5" | ||
spec.add_dependency "redis-mutex", "~> 4.0.1" | ||
spec.add_dependency "hiredis", "~> 0.6" | ||
spec.add_dependency "ruby-graphviz", "~> 1.2" | ||
spec.add_dependency "terminal-table", "~> 1.4" | ||
|
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