blob: 6bb06541db4d3f283ee09ff5d1b9e63e5c77b6b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Gem::Specification.new do |s|
s.name = 'chotto'
s.version = '0.1.1'
s.licenses = ['BSD-3-Clause']
s.summary = "chotto-0.1.1"
s.description = "Initial tagging script for Notmuch"
s.authors = ["mms"]
s.email = 'chotto@sapka.me'
s.files = `git ls-files -- lib/*`.split("\n")
s.homepage = 'https://crys.site/projects/chotto'
s.bindir = 'exe'
s.executables << "chotto"
s.metadata = { "source_code_uri" => "https://cgit.crys.site/chotto" }
s.add_development_dependency "rspec", ">= 3"
end
|