-
Notifications
You must be signed in to change notification settings - Fork 10
/
toiler.gemspec
30 lines (24 loc) · 1.12 KB
/
toiler.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'toiler/version'
Gem::Specification.new do |spec|
spec.name = 'toiler'
spec.version = Toiler::VERSION
spec.authors = ['Sebastian Schepens']
spec.email = ['[email protected]']
spec.description = spec.summary = 'Toiler is a super efficient AWS SQS and GCP PubSub thread based message processor'
spec.homepage = 'https://github.com/sschepens/toiler'
spec.license = 'LGPLv3'
spec.files = `git ls-files -z`.split("\x0")
spec.executables << 'toiler'
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'rspec'
spec.add_dependency 'aws-sdk-sqs', '>= 1.0.0', '< 2.0.0'
spec.add_dependency 'concurrent-ruby', '~> 1.0', '>= 1.0.0'
spec.add_dependency 'concurrent-ruby-edge', '~> 0.3', '>= 0.3'
spec.add_dependency 'google-cloud-pubsub', '~> 2.9', '>= 2.9.1'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.required_ruby_version = '>= 2.6.0'
end