-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathfit-commit.gemspec
31 lines (26 loc) · 1.19 KB
/
fit-commit.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/fit_commit/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = "fit-commit"
gem.version = FitCommit::VERSION
gem.license = "MIT"
gem.authors = ["Michael Foley"]
gem.email = ["foley3@gmail.com"]
gem.homepage = "https://github.com/m1foley/fit-commit"
gem.summary = "A Git hook to validate your commit messages"
gem.description = "A Git hook to validate your commit messages based on community standards."
gem.files = `git ls-files`.split("\n")
gem.executables = ["fit-commit"]
gem.test_files = `git ls-files -- test/*`.split("\n")
gem.require_paths = ["lib"]
gem.extra_rdoc_files = ["README.md"]
gem.rdoc_options = ["--main", "README.md"]
gem.post_install_message = <<-EOF
Install Fit Commit hooks in each git repo you want to scan using:
> fit-commit install
Read more: https://github.com/m1foley/fit-commit#readme
EOF
gem.add_dependency("swearjar", "~> 1.4")
gem.add_development_dependency("minitest", "~> 5.14")
gem.add_development_dependency("rake", "~> 13.0")
end