-
Notifications
You must be signed in to change notification settings - Fork 1
/
lolcommits-loltext.gemspec
39 lines (33 loc) · 1.55 KB
/
lolcommits-loltext.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
31
32
33
34
35
36
37
38
39
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'lolcommits/loltext/version'
Gem::Specification.new do |spec|
spec.name = "lolcommits-loltext"
spec.version = Lolcommits::Loltext::VERSION
spec.authors = ["Matthew Hutchinson"]
spec.email = ["[email protected]"]
spec.summary = %q{lolcommits commit message annotation plugin}
spec.homepage = "https://github.com/lolcommits/lolcommits-loltext"
spec.license = "LGPL-3.0"
spec.description = <<-DESC
Overlay the commit message and sha on your lolcommit. Configure text
style, positioning, border and coloured overlay.
DESC
spec.metadata = {
"homepage_uri" => "https://github.com/lolcommits/lolcommits-loltext",
"changelog_uri" => "https://github.com/lolcommits/lolcommits-loltext/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/lolcommits/lolcommits-loltext",
"bug_tracker_uri" => "https://github.com/lolcommits/lolcommits-loltext/issues",
"allowed_push_host" => "https://rubygems.org"
}
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(assets|test|features)/}) }
spec.test_files = `git ls-files -- {test,features}/*`.split("\n")
spec.bindir = "bin"
spec.executables = []
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1"
spec.add_development_dependency "lolcommits", ">= 0.17.0"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest"
end