-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckoff.gemspec
42 lines (37 loc) · 1.43 KB
/
checkoff.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
38
39
40
41
42
# coding: ascii
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'checkoff/version'
Gem::Specification.new do |spec|
spec.name = 'checkoff'
spec.version = Checkoff::VERSION
spec.authors = ['Vince Broz']
spec.email = ['[email protected]']
spec.summary = 'Command-line and gem client for Asana (unofficial)'
spec.homepage = 'https://github.com/apiology/checkoff'
spec.license = 'MIT license'
spec.required_ruby_version = '>= 3.0'
spec.files = Dir['README.md',
'Rakefile',
'lib/checkoff.rb',
'{lib}/**/*',
'sig/**/*.rbs',
'sig/*.rbs',
'rbi/**/*.rbi',
'rbi/*.rbi',
'{exe}/*',
'checkoff.gemspec']
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activesupport'
spec.add_runtime_dependency 'asana', '>0.10.0'
spec.add_runtime_dependency 'cache_method'
spec.add_runtime_dependency 'gli'
spec.add_runtime_dependency 'mime-types'
spec.add_runtime_dependency 'sorbet-runtime'
spec.metadata = {
'rubygems_mfa_required' => 'false',
}
end