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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cbefca21e3aaf8ddf5f9898696868aecbe8ec550
4
- data.tar.gz: 7c064f9024e238ed16a4d1d76e986f2f5b39218a
3
+ metadata.gz: 8a6328887d088f1a0290e8212e2d2616a39447d8
4
+ data.tar.gz: 65af835f05379a6a2b4453b539a8dea21427c7fd
5
5
  SHA512:
6
- metadata.gz: 4c23a1baba90b83bd42f0f1d62eaca1ad8e29e9b44c8a8b5fdb3c94d11a1c9f2a104f60422899d496ad1941f2f92a6050beda845e6b3981d6c64ade114895f1c
7
- data.tar.gz: 1de9e5ba20d9d8230f16c60270c88e23ca3f9c86709b10e3acf62f8db0a5d29a014b01c3f1b4f9f82b19fa29ea3eae6eb50e7b2c3ef401d74e39a2908794ff94
6
+ metadata.gz: 84ced6e36baa5d2e5585d95547290fffc620f5426d60e953cf10644e7a5ba8deadcb9818aa8d88cf77b2863d9f6163477f13934972228a6f078ebcb7553358ff
7
+ data.tar.gz: f085d157ffd9150ebc1c9c12558cada1db5a30e563f782d1bd607df472a995c5f0bc8897467ea7fda4e8d27e712f5a1497a7125ed84db04f4507aa487274c9f1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- r53z (0.2.0)
4
+ r53z (0.3.0)
5
5
  aws-sdk
6
6
  inifile
7
7
  methadone (~> 1.9.2)
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 Dispath table seems smarter...can't figure out how to call methods based
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
@@ -1,3 +1,3 @@
1
1
  module R53z
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r53z
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe Cooper