gems-status 1.72.0 → 1.73.0
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/lib/gems-status/checkers/git_check_messages.rb +6 -0
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.73.0
|
|
@@ -17,11 +17,17 @@ module GemsStatus
|
|
|
17
17
|
|
|
18
18
|
def messages(name, source_repo)
|
|
19
19
|
begin
|
|
20
|
+
puts "DEBUG: about to open #{source_repo}"
|
|
20
21
|
g = Git.open(name)
|
|
22
|
+
puts "DEBUG: opened #{source_repo}"
|
|
21
23
|
rescue
|
|
24
|
+
puts "DEBUG: about to clone #{source_repo}"
|
|
22
25
|
g = Git.clone(source_repo, name)
|
|
26
|
+
puts "DEBUG: cloned #{source_repo}"
|
|
23
27
|
end
|
|
28
|
+
puts "DEBUG: about to pull from #{source_repo}"
|
|
24
29
|
g.lib.send(:command, 'pull')
|
|
30
|
+
puts "DEBUG: pulling finished"
|
|
25
31
|
return g.log MAX_NUM_MESSAGES
|
|
26
32
|
end
|
|
27
33
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gems-status
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.73.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-12-
|
|
12
|
+
date: 2013-12-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: xml-simple
|