-
Notifications
You must be signed in to change notification settings - Fork 11
/
diakonos.gemspec
30 lines (28 loc) · 949 Bytes
/
diakonos.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
Gem::Specification.new do |s|
s.add_runtime_dependency "curses", "1.4.6"
s.authors = ["Pistos"]
s.bindir = "bin"
s.description = "Diakonos is a console text editor for the masses."
s.email = "diakonos dawt pistos aet purepistos dawt net"
s.executables = "diakonos"
s.files = [
"CHANGELOG",
"diakonos.conf",
"diakonos-256-colour.conf",
"LICENCE.md",
"bin/diakonos",
] +
Dir["help/*"] +
Dir["lib/**/*.rb"]
s.homepage = "https://git.sr.ht/~pistos/diakonos"
s.license = "GPL-3.0-only"
s.metadata = {
"changelog_uri" => "https://git.sr.ht/~pistos/diakonos/tree/master/item/CHANGELOG",
"homepage_uri" => "https://git.sr.ht/~pistos/diakonos",
"source_code_uri" => "https://git.sr.ht/~pistos/diakonos",
}
s.name = "diakonos"
s.required_ruby_version = ">= 2.6", "< 4"
s.summary = "Console text editor for the masses"
s.version = "0.9.12"
end