-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwoad.gemspec
More file actions
68 lines (55 loc) · 1.69 KB
/
Copy pathwoad.gemspec
File metadata and controls
68 lines (55 loc) · 1.69 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# ######################################################################## #
# File: woad.gemspec
#
# Purpose: Gemspec for woad.Ruby library
#
# Created: 15th August 2026
# Updated: 19th August 2026
#
# ######################################################################## #
$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'woad/version'
Gem::Specification.new do |spec|
spec.name = 'woad'
spec.summary = 'Minimal ANSI terminal colour codes, for Ruby'
spec.version = Woad::VERSION
spec.description = <<END_DESC
Minimal ANSI terminal colour codes, for Ruby.
woad.Ruby is the Ruby implementation of the woad family of libraries.
END_DESC
spec.authors = [
'Matt Wilson',
]
spec.email = [
'matthew@synesis.com.au',
]
spec.homepage = 'https://github.com/synesissoftware/woad.Ruby'
spec.license = 'BSD-3-Clause'
spec.required_ruby_version = [ '>= 2.0' ]
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/synesissoftware/woad.Ruby/issues',
'changelog_uri' => 'https://github.com/synesissoftware/woad.Ruby/blob/master/CHANGES.md',
'homepage_uri' => 'https://github.com/synesissoftware/woad.Ruby',
'source_code_uri' => 'https://github.com/synesissoftware/woad.Ruby',
}
spec.files = Dir[
'Rakefile',
'{bin,examples,lib,man,spec,test}/**/*',
'AUTHORS*',
'CHANGES*',
'CONTRIBUTING*',
'EXAMPLES*',
'FAQ*',
'INSTALL*',
'LICENSE*',
'NEWS*',
'README*',
'SECURITY*',
'TODO*',
] & `git ls-files -z`.split("\0")
spec.files -= [
'.ruby-version',
'Gemfile.lock',
]
end
# ############################## end of file ############################# #