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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6c32900e76a1fff5d6255a88a76e112d9bccc429
4
- data.tar.gz: 2ad9941848464e5d357d51c5a40f22fd216802c1
3
+ metadata.gz: e41be9a5f9b005aa6f666a9e439174d4d4e357c7
4
+ data.tar.gz: 1a4c8277bde888f513eee2e0bbcbf03fe853fb6b
5
5
  SHA512:
6
- metadata.gz: eb996cd83661f0b90fa12cd4b3db7ead977303df79317a9827ce6cad19ff3d129bc284920836bd10f52043fa202f59fc1a87f8839e6350fb07134fd202fab89d
7
- data.tar.gz: 7c0b28d67cc2134d5979f835ea048c7f90e61ae2c372e7fe2f8724ef55bc306e8728e88e6c0d6fe8c88a0ba44737fa98c82ebb8e3507f9cfea55b54f1588dbf4
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...
@@ -1,4 +1,4 @@
1
1
  module UpdateRepo
2
2
  # constant, current version of this Gem
3
- VERSION = '0.3.2'.freeze
3
+ VERSION = '0.3.3'.freeze
4
4
  end
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.2
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-14 00:00:00.000000000 Z
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.1
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