forked from chaps-io/gush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgush.gemspec
32 lines (29 loc) · 1.31 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
# 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 = "0.3"
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.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 "yajl-ruby", "~> 1.2"
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"
spec.add_dependency "colorize", "~> 0.7"
spec.add_dependency "thor", "~> 0.19"
spec.add_dependency "launchy", "~> 2.4"
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake", "~> 10.4"
spec.add_development_dependency "rspec", '~> 3.0'
end