ktheory-vlad-git 2.1.0 → 2.1.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/CHANGELOG.rdoc +9 -0
- data/Rakefile +1 -0
- data/lib/vlad/git.rb +2 -2
- metadata +43 -9
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
=== 2.1.1 / 2010-08-17
|
|
2
|
+
|
|
3
|
+
* Fix compatability with Rake 2.1.0
|
|
4
|
+
(Vlad::CommandFailedError became Rake::CommandFailedError)
|
|
5
|
+
|
|
6
|
+
* Fixed git submodule initialization for older git versions (< 1.5.6).
|
|
7
|
+
|
|
8
|
+
* Fixed bug that caused old code to be deployed
|
|
9
|
+
|
|
1
10
|
=== 2.1.0 / 2009-10-14
|
|
2
11
|
|
|
3
12
|
* Added git submodule support. [Balazs Nagy]
|
data/Rakefile
CHANGED
data/lib/vlad/git.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
class Vlad::Git
|
|
2
2
|
|
|
3
3
|
# Duh.
|
|
4
|
-
VERSION = "2.1.
|
|
4
|
+
VERSION = "2.1.1"
|
|
5
5
|
|
|
6
6
|
set :source, Vlad::Git.new
|
|
7
7
|
set :git_cmd, "git"
|
|
@@ -80,7 +80,7 @@ class Vlad::Git
|
|
|
80
80
|
"cd -; then exit 0; else exit 1; fi &>/dev/null" ].join(" && ")
|
|
81
81
|
run cmd
|
|
82
82
|
return true
|
|
83
|
-
rescue
|
|
83
|
+
rescue Rake::CommandFailedError
|
|
84
84
|
return false
|
|
85
85
|
end
|
|
86
86
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ktheory-vlad-git
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 9
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 2
|
|
8
|
+
- 1
|
|
9
|
+
- 1
|
|
10
|
+
version: 2.1.1
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- John Barnette
|
|
@@ -9,19 +15,41 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date: 2010-
|
|
18
|
+
date: 2010-08-17 00:00:00 -04:00
|
|
13
19
|
default_executable:
|
|
14
20
|
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: vlad
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 11
|
|
30
|
+
segments:
|
|
31
|
+
- 2
|
|
32
|
+
- 1
|
|
33
|
+
- 0
|
|
34
|
+
version: 2.1.0
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
15
37
|
- !ruby/object:Gem::Dependency
|
|
16
38
|
name: hoe
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
39
|
+
prerelease: false
|
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
20
42
|
requirements:
|
|
21
43
|
- - ">="
|
|
22
44
|
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 5
|
|
46
|
+
segments:
|
|
47
|
+
- 2
|
|
48
|
+
- 3
|
|
49
|
+
- 3
|
|
23
50
|
version: 2.3.3
|
|
24
|
-
|
|
51
|
+
type: :development
|
|
52
|
+
version_requirements: *id002
|
|
25
53
|
description: |-
|
|
26
54
|
Vlad plugin for Git support. This was previously part of Vlad, but all
|
|
27
55
|
modules outside the core recipe have been extracted.
|
|
@@ -54,21 +82,27 @@ rdoc_options:
|
|
|
54
82
|
require_paths:
|
|
55
83
|
- lib
|
|
56
84
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
85
|
+
none: false
|
|
57
86
|
requirements:
|
|
58
87
|
- - ">="
|
|
59
88
|
- !ruby/object:Gem::Version
|
|
89
|
+
hash: 3
|
|
90
|
+
segments:
|
|
91
|
+
- 0
|
|
60
92
|
version: "0"
|
|
61
|
-
version:
|
|
62
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
|
+
none: false
|
|
63
95
|
requirements:
|
|
64
96
|
- - ">="
|
|
65
97
|
- !ruby/object:Gem::Version
|
|
98
|
+
hash: 3
|
|
99
|
+
segments:
|
|
100
|
+
- 0
|
|
66
101
|
version: "0"
|
|
67
|
-
version:
|
|
68
102
|
requirements: []
|
|
69
103
|
|
|
70
104
|
rubyforge_project: hitsquad
|
|
71
|
-
rubygems_version: 1.3.
|
|
105
|
+
rubygems_version: 1.3.7
|
|
72
106
|
signing_key:
|
|
73
107
|
specification_version: 3
|
|
74
108
|
summary: Vlad plugin for Git support
|