forked from chaps-io/gush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gush.gemspec
36 lines (33 loc) · 1.51 KB
/
gush.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# coding: utf-8
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 = "2.0.1"
spec.authors = ["Piotrek Okoński"]
spec.email = ["[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"
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 "activejob", ">= 4.2.7", "< 7.0"
spec.add_dependency "concurrent-ruby", "~> 1.0"
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"
spec.add_dependency "colorize", "~> 0.7"
spec.add_dependency "thor", "~> 0.19"
spec.add_dependency "launchy", "~> 2.4"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", "~> 10.4"
spec.add_development_dependency "rspec", '~> 3.0'
spec.add_development_dependency "pry", '~> 0.10'
spec.add_development_dependency 'fakeredis', '~> 0.5'
end