-
Notifications
You must be signed in to change notification settings - Fork 11
/
git_curate.gemspec
41 lines (34 loc) · 1.52 KB
/
git_curate.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
40
41
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "git_curate/version"
Gem::Specification.new do |spec|
spec.name = "git_curate"
spec.version = GitCurate::VERSION
spec.authors = ["Matthew Harvey"]
spec.email = ["software@matthewharvey.net"]
spec.summary = "Simple git branch curation tool"
spec.description = "Step through local git branches from the command line, keeping or deleting each."
spec.homepage = "https://github.com/matt-harvey/git_curate"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1.0"
spec.metadata = {
"source_code_uri" => "https://github.com/matt-harvey/git_curate",
"changelog_uri" => "https://raw.githubusercontent.com/matt-harvey/git_curate/master/CHANGELOG.md"
}
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "highline", "3.1.1"
spec.add_runtime_dependency "rugged", "1.7.2"
spec.add_runtime_dependency "tabulo", "3.0.2"
spec.add_runtime_dependency "tty-screen", "0.8.2"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", "~> 13.2"
spec.add_development_dependency "rspec", "~> 3.13"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "simplecov-lcov"
end