-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupperkut.gemspec
29 lines (24 loc) · 1.02 KB
/
upperkut.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', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'upperkut/version'
Gem::Specification.new do |spec|
spec.name = 'upperkut'
spec.version = Upperkut::VERSION
spec.authors = ['Nando Sousa']
spec.email = ['nandosousafr@gmail.com']
spec.summary = 'Batch background processing tool'
spec.description = 'Batch background processing tool'
spec.homepage = 'http://shipit.resultadosdigitais.com.br/open-source/'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.executables = ['upperkut']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0'
spec.add_dependency 'connection_pool', '~> 2.2', '>= 2.2.2'
spec.add_dependency 'redis', '>= 4.1.0', '< 6.0.0'
spec.add_development_dependency 'bundler', '>= 1.16'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
end