forked from sds/overcommit
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathovercommit.gemspec
More file actions
Latest commit
32 lines (25 loc) · 1.11 KB
/
Copy pathovercommit.gemspec
File metadata and controls
32 lines (25 loc) · 1.11 KB
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
# frozen_string_literal: true
require_relative'./lib/overcommit/constants'
require_relative'./lib/overcommit/version'
Gem::Specification.newdo |s|
s.name='overcommit'
s.version=Overcommit::VERSION
s.license='MIT'
s.summary='Git hook manager'
s.description='Utility to install, configure, and extend Git hooks'
s.authors=['Shane da Silva']
s.email=['shane@dasilva.io']
s.homepage=Overcommit::REPO_URL
s.post_install_message=
'Install hooks by running `overcommit --install` in your Git repository'
s.require_paths=%w[lib]
s.executables=['overcommit']
s.files=Dir['bin/**/*'] +
Dir['config/*.yml'] +
Dir['lib/**/*.rb'] +
Dir['libexec/**/*'] +
Dir['template-dir/**/*']
s.required_ruby_version='>= 2.4'
s.add_dependency'childprocess','>= 0.6.3','< 4'
s.add_dependency'iniparse','~> 1.4'
end