-
Notifications
You must be signed in to change notification settings - Fork 0
/
hookie.gemspec
29 lines (23 loc) · 1.21 KB
/
hookie.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hookie/version'
Gem::Specification.new do |gem|
gem.name = "hookie"
gem.version = Hookie::VERSION
gem.authors = ["Marcin Szczepanski"]
gem.email = ["[email protected]"]
gem.description = %q{Hookie provides a way to write git hooks with ruby without too much worrying about any of the plumbing required, you can easily write your own plugins and focus on the core of your functionality.
Hookie includes plugins for Jenkins, FishEye, and HipChat.}
gem.summary = %q{Framework for writing gitolite/git hooks with Ruby}
gem.homepage = "https://github.com/marcins/hookie"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'grit', '~> 2.5.0'
gem.add_dependency 'diff-lcs', '~> 1.1.3'
gem.add_development_dependency 'rake', '>= 10.0.3'
gem.add_development_dependency 'rspec', '~> 2.12.0'
gem.add_development_dependency 'simplecov', '>= 0.4.0'
end