r53z 0.3.0 → 0.3.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/Gemfile.lock +1 -1
- data/bin/r53z +2 -2
- data/lib/r53z/cli.rb +1 -1
- data/lib/r53z/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: 8a6328887d088f1a0290e8212e2d2616a39447d8
|
4
|
+
data.tar.gz: 65af835f05379a6a2b4453b539a8dea21427c7fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84ced6e36baa5d2e5585d95547290fffc620f5426d60e953cf10644e7a5ba8deadcb9818aa8d88cf77b2863d9f6163477f13934972228a6f078ebcb7553358ff
|
7
|
+
data.tar.gz: f085d157ffd9150ebc1c9c12558cada1db5a30e563f782d1bd607df472a995c5f0bc8897467ea7fda4e8d27e712f5a1497a7125ed84db04f4507aa487274c9f1
|
data/Gemfile.lock
CHANGED
data/bin/r53z
CHANGED
@@ -24,8 +24,8 @@ class App
|
|
24
24
|
on("-c NAME", "--create", "Create a zone with the given name and optional --comment and --delegation-set.")
|
25
25
|
on("-n COMMENT", "--comment", "Optional comment when creating a zone.")
|
26
26
|
on("-d", "--delete", "Delete one or more zone(s) by name (WARNING: No confirmation!)")
|
27
|
-
on("-C", "--credentials", "File containing credentials information.")
|
28
|
-
on("-u", "--section", "Section (user) in the credentials file to use.")
|
27
|
+
on("-C FILE", "--credentials", "File containing credentials information.")
|
28
|
+
on("-u SECTION", "--section", "Section (user) in the credentials file to use.")
|
29
29
|
on("-g ID", "--delegation-set", "Delegation set ID to use for various operations.")
|
30
30
|
on("-t", "--list-delegation-sets", "List delegation set for named zone, or all sets if no zone specified.")
|
31
31
|
on("-D", "--delete-delegation-sets", "Delete one or more delegation sets by ID (WARNING: No confirmation!")
|
data/lib/r53z/cli.rb
CHANGED
@@ -11,7 +11,7 @@ module R53z
|
|
11
11
|
creds = R53z::Config.new(config_file)
|
12
12
|
@client = R53z::Client.new(section, creds)
|
13
13
|
|
14
|
-
# XXX
|
14
|
+
# XXX Dispatch table seems smarter...can't figure out how to call methods based
|
15
15
|
# directly on hash keys at the moment.
|
16
16
|
if options[:export]
|
17
17
|
help_now! "Export requires a directory path for zone files" if args.length < 1
|
data/lib/r53z/version.rb
CHANGED