-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrbtext.gemspec
More file actions
28 lines (26 loc) · 838 Bytes
/
rbtext.gemspec
File metadata and controls
28 lines (26 loc) · 838 Bytes
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
require_relative "lib/rbtext.rb"
exe=['ftext']
Gem::Specification.new do |s|
s.name = 'rbtext'
s.version = RBText.version
s.summary = "RBText"
s.description = "A gem for printing formatted text"
s.authors = ["Matthias Lee"]
s.email = 'matthias@matthiasclee.com'
s.files = [
"lib/rbtext.rb",
"lib/rbtext/colors.rb",
"lib/rbtext/cursor.rb",
"lib/rbtext/formatting.rb",
"lib/rbtext/ftext.rb",
"lib/rbtext/screen.rb",
"lib/rbtext/string_methods.rb"
] + exe.map{|i|"bin/#{i}"}
s.executables = exe
s.add_runtime_dependency "io-console", '~> 0.5.6'
s.add_runtime_dependency "io-wait", '~> 0.3.0'
s.add_runtime_dependency "argparse", '~> 0.0.3'
s.require_paths = ["lib"]
s.homepage = 'https://github.com/Matthiasclee/RBText'
s.license = 'Nonstandard'
end