-
Notifications
You must be signed in to change notification settings - Fork 0
/
shifty.gemspec
29 lines (25 loc) · 1.25 KB
/
shifty.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "shifty/version"
Gem::Specification.new do |spec|
spec.name = "shifty"
spec.version = Shifty::VERSION
spec.authors = ["Joel Helbling"]
spec.email = ["[email protected]"]
spec.summary = "A functional framework aimed at extremely low coupling"
spec.description = "Shifty provides tools for coordinating simple workers which consume a supplying queue and emit corresponding work products, valuing pure functions, carefully isolated side effects, and extremely low coupling."
spec.homepage = "https://github.com/joelhelbling/shifty"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|\.github|\.standard\.yml|Guardfile|_config\.yml)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.9"
spec.add_development_dependency "rspec-given", "~> 3.8"
spec.add_development_dependency "pry"
spec.add_development_dependency "standard", ">= 1.28.2"
spec.add_development_dependency "codeclimate-test-reporter"
end