update_repo 0.3.2 → 0.3.3
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.
- checksums.yaml +4 -4
- data/exe/update_repo +6 -0
- data/lib/update_repo/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e41be9a5f9b005aa6f666a9e439174d4d4e357c7
|
|
4
|
+
data.tar.gz: 1a4c8277bde888f513eee2e0bbcbf03fe853fb6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8dc6f49e949d835af736370847162ca7b93c8d26bd2ea25f17e55ca2909415127e70952ccf305a9b4162a73c9bdeaff478f7da21b52d9447fbc9ab00fac7e40
|
|
7
|
+
data.tar.gz: a0e769b2ec965e02f426b339f925f8a8ab42dab80f24c9e442c3817bd6ae76adc0890870538df1786892706ea064d0d373a29fa24e4b00b0b74c5a6a4d2cd6c0
|
data/exe/update_repo
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
require 'update_repo'
|
|
3
3
|
|
|
4
|
+
# Catch ctrl-c and abort gracefully without Ruby back trace...
|
|
5
|
+
Signal.trap('INT') {
|
|
6
|
+
print "\r -> ".red, "Aborting on user request.\n"
|
|
7
|
+
exit
|
|
8
|
+
}
|
|
9
|
+
|
|
4
10
|
# create a new instance of the class...
|
|
5
11
|
walk_repo = UpdateRepo::WalkRepo.new
|
|
6
12
|
# then start the process...
|
data/lib/update_repo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: update_repo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grant Ramsay
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -278,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
278
278
|
version: '0'
|
|
279
279
|
requirements: []
|
|
280
280
|
rubyforge_project:
|
|
281
|
-
rubygems_version: 2.6.
|
|
281
|
+
rubygems_version: 2.6.2
|
|
282
282
|
signing_key:
|
|
283
283
|
specification_version: 4
|
|
284
284
|
summary: A Simple Gem to keep multiple locally-cloned Git Repositories up to date
|