Sha256: c0fe716ae35b11b34d68aa9d0523572b29693ab842f1b3629e71091fe3f69141
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
# 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 = ">= 2.4.9" 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", "2.0.3" spec.add_runtime_dependency "rugged", "1.4.3" spec.add_runtime_dependency "tabulo", "2.8.0" spec.add_runtime_dependency "tty-screen", "0.8.1" spec.add_development_dependency "bundler" spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rake-version", "~> 1.0" spec.add_development_dependency "rspec", "~> 3.9" spec.add_development_dependency "simplecov" spec.add_development_dependency "simplecov-lcov" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
git_curate-1.2.1 | git_curate.gemspec |