git-precommit 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/git-precommit.gemspec +3 -3
- data/lib/git-precommit/precommit_tasks.rb +1 -0
- data/lib/git-precommit/tasks.rb +2 -1
- metadata +12 -5
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.1
|
data/git-precommit.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{git-precommit}
|
|
8
|
-
s.version = "1.2.
|
|
8
|
+
s.version = "1.2.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Toby Tripp"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-03-07}
|
|
13
13
|
s.default_executable = %q{setpairs}
|
|
14
14
|
s.description = %q{ A set of rake tasks that install git pre-commit hooks to call your build.
|
|
15
15
|
If your build fails, the commit will not proceed.
|
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
|
|
|
35
35
|
s.homepage = %q{http://github.com/tobytripp/git-pre-commit}
|
|
36
36
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
37
37
|
s.require_paths = ["lib"]
|
|
38
|
-
s.rubygems_version = %q{1.3.
|
|
38
|
+
s.rubygems_version = %q{1.3.6}
|
|
39
39
|
s.summary = %q{Fail commits if the tests fail.}
|
|
40
40
|
|
|
41
41
|
if s.respond_to? :specification_version then
|
data/lib/git-precommit/tasks.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-precommit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 1
|
|
7
|
+
- 2
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.2.1
|
|
5
10
|
platform: ruby
|
|
6
11
|
authors:
|
|
7
12
|
- Toby Tripp
|
|
@@ -9,7 +14,7 @@ autorequire:
|
|
|
9
14
|
bindir: bin
|
|
10
15
|
cert_chain: []
|
|
11
16
|
|
|
12
|
-
date: 2010-
|
|
17
|
+
date: 2010-03-07 00:00:00 -06:00
|
|
13
18
|
default_executable: setpairs
|
|
14
19
|
dependencies: []
|
|
15
20
|
|
|
@@ -46,18 +51,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
46
51
|
requirements:
|
|
47
52
|
- - ">="
|
|
48
53
|
- !ruby/object:Gem::Version
|
|
54
|
+
segments:
|
|
55
|
+
- 0
|
|
49
56
|
version: "0"
|
|
50
|
-
version:
|
|
51
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
58
|
requirements:
|
|
53
59
|
- - ">="
|
|
54
60
|
- !ruby/object:Gem::Version
|
|
61
|
+
segments:
|
|
62
|
+
- 0
|
|
55
63
|
version: "0"
|
|
56
|
-
version:
|
|
57
64
|
requirements: []
|
|
58
65
|
|
|
59
66
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 1.3.
|
|
67
|
+
rubygems_version: 1.3.6
|
|
61
68
|
signing_key:
|
|
62
69
|
specification_version: 3
|
|
63
70
|
summary: Fail commits if the tests fail.
|