diff options
Diffstat (limited to 'chotto.gemspec')
-rw-r--r-- | chotto.gemspec | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chotto.gemspec b/chotto.gemspec new file mode 100644 index 0000000..10fbc9f --- /dev/null +++ b/chotto.gemspec @@ -0,0 +1,17 @@ +Gem::Specification.new do |s| + s.name = 'chotto' + s.version = '0.1.0' + s.licenses = ['BSD-3-Clause'] + s.summary = "chotto-0.0.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.executables << "chotto" + s.metadata = { "source_code_uri" => "https://cgit.crys.site/chotto" } + + s.add_development_dependency "rspec", ">= 2" +end + + |