forked from jish/pre-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpre-commit.gemspec
More file actions
26 lines (22 loc) · 870 Bytes
/
pre-commit.gemspec
File metadata and controls
26 lines (22 loc) · 870 Bytes
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{pre-commit}
s.version = "0.10.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Shajith Chacko, Josh Lubaway"]
s.default_executable = %q{pre-commit}
s.email = %q{dontneedmoreemail@example.com}
s.executables = ["pre-commit"]
s.extra_rdoc_files = ["README.md"]
s.files = Dir["lib/**/*"]
s.homepage = %q{http://github.com/jish/pre-commit}
s.rdoc_options = ["--main", "README.md"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = "A slightly better git pre-commit hook"
s.description = "A git pre-commit hook written in ruby with a few more tricks up its sleeve"
s.add_dependency('execjs')
if s.respond_to? :specification_version then
s.specification_version = 3
end
end