-
Notifications
You must be signed in to change notification settings - Fork 0
/
natty-ui.gemspec
30 lines (25 loc) · 1.18 KB
/
natty-ui.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
require_relative 'lib/natty-ui/version'
Gem::Specification.new do |spec|
spec.name = 'natty-ui'
spec.version = NattyUI::VERSION
spec.summary =
'This is the beautiful, nice, nifty, fancy, neat, pretty, cool, rich, ' \
'lovely, natty user interface you like to have for your CLI.'
spec.description = <<~DESCRIPTION
This is the beautiful, nice, nifty, fancy, neat, pretty, cool, rich, lovely,
natty user interface tool you like to have for your command line applications.
It contains elegant, simple and beautiful features that enhance your
command line interfaces functionally and aesthetically.
DESCRIPTION
spec.author = 'Mike Blumtritt'
spec.license = 'BSD-3-Clause'
spec.homepage = 'https://github.com/mblumtritt/natty-ui'
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/issues"
spec.metadata['documentation_uri'] = 'https://rubydoc.info/gems/natty-ui'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.required_ruby_version = '>= 3.0'
spec.files = (Dir['lib/**/*'] + Dir['examples/**/*.rb']) << '.yardopts'
spec.extra_rdoc_files = %w[README.md LICENSE]
end