-
Notifications
You must be signed in to change notification settings - Fork 1
/
uber_task.gemspec
37 lines (33 loc) · 1.02 KB
/
uber_task.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
37
# frozen_string_literal: true
LIB_DIR = File.expand_path('lib', __dir__)
if !$LOAD_PATH.include?(LIB_DIR)
$LOAD_PATH.unshift(LIB_DIR)
end
Gem::Specification.new do |s|
s.name = 'uber_task'
s.version = '0.1.0'
s.authors = [
'Alexandre Borela',
'Justin Gordon',
]
s.email = [
]
s.summary = 'Sequential task management'
s.description = <<~DESC.strip
Run tasks in a structured way with support for retry and progress report.
DESC
s.homepage = 'https://github.com/shakacode/uber_task'
s.license = 'MIT'
s.required_ruby_version = '>= 2.7.5'
s.metadata['homepage_uri'] = s.homepage
s.metadata['source_code_uri'] = 'https://github.com/shakacode/uber_task'
s.metadata['changelog_uri'] = <<~LINK.strip
https://github.com/shakacode/uber_task/blob/main/CHANGELOG.md
LINK
s.metadata['rubygems_mfa_required'] = 'true'
s.require_paths = ['lib']
s.files = Dir['lib/**/*', 'LICENSE', 'README.md']
s.add_dependency('colorize', '~> 1.1.0')
end