-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrabbitt-githooks.gemspec
56 lines (44 loc) · 2.2 KB
/
rabbitt-githooks.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
=begin
Copyright (C) 2013 Carl P. Corliss
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
=end
# coding: utf-8
load File.expand_path('../lib/githooks/version.rb', __FILE__)
begin
Gem::Specification.new do |spec|
spec.name = 'rabbitt-githooks'
spec.version = GitHooks::VERSION
spec.authors = ['Carl P. Corliss']
spec.email = ['rabbitt@gmail.com']
spec.description = 'GitHooks provides a framework for building tests that can be used with git hooks'
spec.homepage = 'http://github.com/rabbitt/githooks'
spec.summary = 'framework for building git hooks tests'
spec.license = 'GPLv2'
spec.rubygems_version = '2.0.14'
spec.files = %x{ git ls-files }.split($/).grep(%r{^([A-Z]+|lib|bin|.+\.gemspec)})
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.extra_rdoc_files = ['README.md', 'LICENSE.txt']
spec.required_ruby_version = '>= 2.0.0'
spec.add_dependency 'rainbow', '>= 2.0.0', '< 4.0'
spec.add_dependency 'thor', '~> 0.19.1'
spec.add_development_dependency 'rake', '~> 10.1'
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'yard', '~> 0.9.15'
spec.add_development_dependency 'rspec', '~> 2.14'
spec.add_development_dependency 'simplecov', '~> 0.9'
spec.add_development_dependency 'rubocop', '~> 0.58.2'
spec.add_development_dependency 'ruby-lint', '~> 2.0'
end
end