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 +4 -4
- data/README.md +0 -2
- data/lib/update_repo.rb +2 -2
- data/lib/update_repo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95636a13072e10a0e61e827a2568a67d7cbdd5d4
|
4
|
+
data.tar.gz: 6ade5972d1a78a9b1105cbfa5495dc024e4a59ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
```
|
data/lib/update_repo.rb
CHANGED
@@ -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
|
data/lib/update_repo/version.rb
CHANGED