gush.gemspec in gush-0.4.1 vs gush.gemspec in gush-1.0.0
- old
+ new
@@ -2,23 +2,24 @@
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "gush"
- spec.version = "0.4.1"
+ spec.version = "1.0.0"
spec.authors = ["Piotrek OkoĊski"]
spec.email = ["piotrek@okonski.org"]
- spec.summary = "Fast and distributed workflow runner using only Sidekiq and Redis"
- spec.description = "Gush is a parallel workflow runner using only Redis as its message broker and Sidekiq for workers."
- spec.homepage = "https://github.com/pokonski/gush"
+ 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"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = "gush"
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
- spec.add_dependency "sidekiq", "~> 4.0"
+ spec.add_dependency "activejob", "~> 5.0"
+ spec.add_dependency "connection_pool", "~> 2.2.1"
spec.add_dependency "multi_json", "~> 1.11"
spec.add_dependency "redis", "~> 3.2"
spec.add_dependency "hiredis", "~> 0.6"
spec.add_dependency "ruby-graphviz", "~> 1.2"
spec.add_dependency "terminal-table", "~> 1.4"