forked from masterzora/tawny-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslithernix-cdk.gemspec
29 lines (23 loc) · 949 Bytes
/
slithernix-cdk.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
# frozen_string_literal: true
desc = [
'This gem provides a Ruby port of the CDK (Curses Development Kit),',
'a library for drawing TUI widgets. It has been updated and re-factored',
'to work with modern Ruby.'
].join(' ')
Gem::Specification.new do |spec|
spec.required_ruby_version = '3.2.0'
spec.name = 'slithernix-cdk'
spec.version = '0.0.1'
spec.authors = ['Snake Blitzken']
spec.email = ['[email protected]']
spec.summary = 'Curses Development Kit'
spec.description = desc
spec.homepage = 'https://github.com/slithernix/slithernix-cdk'
spec.license = 'BSD-3-Clause'
spec.files = Dir['lib/**/*.rb'] + ['README.md', 'COPYING']
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'curses', '~> 1.4'
spec.metadata['rubygems_mfa_required'] = 'true'
end