-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit_version_bumper.gemspec
34 lines (30 loc) · 1.56 KB
/
git_version_bumper.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'git_version_bumper/version'
Gem::Specification.new do |spec|
spec.name = 'git_version_bumper'
spec.version = GitVersionBumper::VERSION
spec.authors = ['Troy Rosenberg']
spec.email = ['[email protected]']
spec.summary = 'CLI tool to create version bump commit and tag with
newest version in a Git repository.'
spec.description = 'CLI tool to create version bump commit and tag with
newest version in a Git repository. Versioning is
based on [Semantic Versioning](http://semver.org/).
Version bump types include MAJOR, MINOR, and PATCH.
Once installed gem can be used in a Git repository by
running `versionify bump TYPE` '
spec.homepage = 'https://github.com/tmr08c/git_version_bumper/'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'git', '~> 1.2'
spec.add_runtime_dependency 'thor', '~> 0.19'
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'rake', '~> 10'
spec.add_development_dependency 'rspec', '~> 3'
spec.add_development_dependency 'rubocop', '~> 0.36'
end