mrm 1.1.0 → 1.1.1
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/bin/mrm +2 -1
- data/lib/mrm/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: f2a7dd74f9c46acef6e0d5546673f75c6cd9cb74
|
|
4
|
+
data.tar.gz: 97545e6fa8a005f297c34f27074eb9a9bf3aed2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56786525c877e5db33998800b3b9f74717bd37e9b88fc42824773be687c010ef537599f352d257e7edeb13900d4efcbe8b4cac0d344343242076a92875c7fedf
|
|
7
|
+
data.tar.gz: c6013c0db1bb3f87f3a9b576ae78f8ea493b151e2c1f8d56bc07442a06bce99ea5e11ea4a7fb2396d64ab83efceaa5e1581cb715938e231aa91c2d9996a667df
|
data/bin/mrm
CHANGED
|
@@ -8,7 +8,7 @@ options = OpenStruct.new
|
|
|
8
8
|
client = MRM::Client.new
|
|
9
9
|
|
|
10
10
|
OptionParser.new do |opts|
|
|
11
|
-
opts.banner =
|
|
11
|
+
opts.banner = "Usage: mrm [options] <command>\n\nOptions:"
|
|
12
12
|
|
|
13
13
|
opts.on('-v', '--version', 'Prints gem version') do |v|
|
|
14
14
|
options.v = true
|
|
@@ -17,6 +17,7 @@ OptionParser.new do |opts|
|
|
|
17
17
|
opts.on('-h', '--help', 'Display this help') do
|
|
18
18
|
puts opts.to_s.split("\n")
|
|
19
19
|
puts "\nCommands:"
|
|
20
|
+
printf("%-3s %-32s %-15s", '', 'check', "Checks registry availability\n")
|
|
20
21
|
printf("%-3s %-32s %-15s", '', 'list', "Shows the list of repositories\n")
|
|
21
22
|
printf("%-3s %-5s %-26s %-15s", '', 'list', '*repo_name*', "Lists tags of the specific repository\n")
|
|
22
23
|
abort
|
data/lib/mrm/version.rb
CHANGED