-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcli-kit.gemspec
32 lines (25 loc) · 1.12 KB
/
cli-kit.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cli/kit/version'
Gem::Specification.new do |spec|
spec.name = 'cli-kit'
spec.version = CLI::Kit::VERSION
spec.authors = ['Burke Libbey', 'Aaron Olson', 'Lisa Ugray']
spec.summary = 'Terminal UI framework extensions'
spec.description = 'Terminal UI framework extensions'
spec.homepage = 'https://github.com/shopify/cli-kit'
spec.license = 'MIT'
spec.files = %x(git ls-files -z).split("\x0").reject do |f|
f.match(%r{^(sorbet|test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_runtime_dependency('cli-ui', '~> 2.0')
spec.required_ruby_version = '>= 3.0'
spec.add_development_dependency('bundler', '~> 2.1')
spec.add_development_dependency('minitest', '~> 5.0')
spec.add_development_dependency('rake', '~> 13.0')
end