update_repo 0.6.2 → 0.6.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: e519e369a595689e2a6181b5a826d8bc0449ab3f
4
- data.tar.gz: d37ac399f3df306d0b525b9eaff8d04d4fc00dd4
3
+ metadata.gz: 95636a13072e10a0e61e827a2568a67d7cbdd5d4
4
+ data.tar.gz: 6ade5972d1a78a9b1105cbfa5495dc024e4a59ac
5
5
  SHA512:
6
- metadata.gz: bb3dfd421c4f2eb248532923daa529ce6a4c2edb9c36bccbf6fae4c0edba04c2caee0a8318eb3bf07aa5ba0bb91b55fcdec188c87bd7383924b1d97b479d8c7f
7
- data.tar.gz: 1d1582fc54099401187c9ba459d37328db0f80cb331400555c0b8a07a2b27a599cb14ed3b56b72883e10d8914c4500ec753fd156da07f1cdd92f023e9dfff6c2
6
+ metadata.gz: 3b9ed7721e92dab35898841644d2b40047501bec8e2c3e6a7e74b546a253d1dcd6fb0832c47a96e37f4130cecc6c7114a79b5d38e2c7edd43bcce37e884dfaaa
7
+ data.tar.gz: b810473dfa95026f9f70e8dc02fc0064e53d9934eaac4fd4af097d2b61fd9135903bce30993cf148f3ca80345001c5d90005e0912d4cfcdfd3ffe14e4dc5cf03
data/README.md CHANGED
@@ -65,8 +65,6 @@ Options:
65
65
  -d, --dump Dump a list of Directories and Git URL's to STDOUT in CSV format
66
66
  -p, --prune=<i> Number of directory levels to remove from the --dump output.
67
67
  Only valid when --dump or -d specified (Default: 0)
68
- -i, --import Import a previous dump of directories and Git repository URL's,
69
- (created using --dump) then proceed to clone them locally.
70
68
  -v, --version Print version and exit
71
69
  -h, --help Show this message
72
70
  ```
@@ -43,10 +43,10 @@ module UpdateRepo
43
43
  def start
44
44
  String.disable_colorization = true unless param_set('color')
45
45
  no_import_export if dumping? && importing?
46
- show_header
47
46
  if importing?
48
-
47
+ Trollop.die "Sorry 'Import' functionality is not implemented yet".red
49
48
  else
49
+ show_header
50
50
  @config['location'].each do |loc|
51
51
  recurse_dir(loc)
52
52
  end
@@ -1,4 +1,4 @@
1
1
  module UpdateRepo
2
2
  # constant, current version of this Gem
3
- VERSION = '0.6.2'.freeze
3
+ VERSION = '0.6.3'.freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: update_repo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grant Ramsay