-
Notifications
You must be signed in to change notification settings - Fork 110
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 #107 from chaps-io/bump-gush-dependencies
Update gush dependencies
- Loading branch information
Showing
5 changed files
with
19 additions
and
36 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 |
---|---|---|
|
@@ -2,11 +2,13 @@ | |
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
|
||
require_relative 'lib/gush/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "gush" | ||
spec.version = "2.1.0" | ||
spec.authors = ["Piotrek Okoński"] | ||
spec.email = ["[email protected]"] | ||
spec.version = Gush::VERSION | ||
spec.authors = ["Piotrek Okoński", "Michał Krzyżanowski"] | ||
spec.email = ["[email protected]", "[email protected]"] | ||
spec.summary = "Fast and distributed workflow runner based on ActiveJob and Redis" | ||
spec.description = "Gush is a parallel workflow runner using Redis as storage and ActiveJob for executing jobs." | ||
spec.homepage = "https://github.com/chaps-io/gush" | ||
|
@@ -16,8 +18,9 @@ Gem::Specification.new do |spec| | |
spec.executables = "gush" | ||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) | ||
spec.require_paths = ["lib"] | ||
spec.required_ruby_version = '>= 3.0.0' | ||
|
||
spec.add_dependency "activejob", ">= 4.2.7", "< 7.1" | ||
spec.add_dependency "activejob", ">= 6.1.0", "< 7.2" | ||
spec.add_dependency "concurrent-ruby", "~> 1.0" | ||
spec.add_dependency "multi_json", "~> 1.11" | ||
spec.add_dependency "redis", ">= 3.2", "< 6" | ||
|
@@ -29,7 +32,7 @@ Gem::Specification.new do |spec| | |
spec.add_dependency "thor", ">= 0.19", "< 1.3" | ||
spec.add_dependency "launchy", "~> 2.4" | ||
spec.add_development_dependency "bundler" | ||
spec.add_development_dependency "rake", "~> 10.4" | ||
spec.add_development_dependency "rake", "~> 12" | ||
spec.add_development_dependency "rspec", '~> 3.0' | ||
spec.add_development_dependency "pry", '~> 0.10' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module Gush | ||
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 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,4 @@ | ||
require 'active_support' | ||
require 'active_support/testing/time_helpers' | ||
require 'gush' | ||
require 'json' | ||
|