dnsimple-ruby 0.8.3 → 0.8.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/dnsimple.rb +12 -2
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.8.
|
1
|
+
0.8.4
|
data/bin/dnsimple.rb
CHANGED
@@ -32,17 +32,19 @@ All commands are executed as dnsimple [options] command [command-options] args
|
|
32
32
|
The following commands are available:
|
33
33
|
|
34
34
|
help # Show this usage
|
35
|
+
|
35
36
|
info # Show your account information
|
36
37
|
|
37
|
-
list # List all domains
|
38
38
|
check domain.com # Check if a domain is available (for registration)
|
39
|
-
describe domain.com # Describe the given domain
|
40
39
|
create [--template=short_name] domain.com # Add the given domain
|
41
40
|
register [--template=short_name] domain.com registrant_id \ # Register the given domain with DNSimple
|
42
41
|
[[name:value] [name:value]] # name:value pairs can be given for extended attributes
|
43
42
|
transfer domain.com registrant_id [authinfo] \ # Transfer the given domain into DNSimple
|
44
43
|
[[name:value] [name:value] ...] # name:value pairs can be given for extended attributes
|
44
|
+
describe domain.com # Describe the given domain
|
45
|
+
list # List all domains
|
45
46
|
delete domain.com # Delete the given domain
|
47
|
+
clear domain.com # Remove all records from the domain
|
46
48
|
apply domain.com template_short_name # Apply a template to the domain
|
47
49
|
|
48
50
|
record:describe domain.com record_id # Describe the given record
|
@@ -62,6 +64,14 @@ template:add_record [--prio=priority] short_name name \\
|
|
62
64
|
type content [ttl] # Add a template record to the given template
|
63
65
|
template:delete_record short_name template_record_id # Delete the given template record
|
64
66
|
|
67
|
+
contact:create [[name:value [name:value] ...] # Create a contact
|
68
|
+
contact:list # List all contacts
|
69
|
+
contact:describe contact_id # Describe the given contact
|
70
|
+
contact:update contact_id [[name:value] [name:value] ...] # Update the given contact
|
71
|
+
contact:delete contact_id # Delete the given contact
|
72
|
+
|
73
|
+
extended-attributes:list tld # List all extended attributes for the given TLD
|
74
|
+
|
65
75
|
|
66
76
|
Please see the DNSimple documentation at https://dnsimple.com/documentation/api for additional
|
67
77
|
information on the commands that are available to DNSimple customers.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dnsimple-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 55
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 8
|
9
|
-
-
|
10
|
-
version: 0.8.
|
9
|
+
- 4
|
10
|
+
version: 0.8.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Anthony Eden
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-12-
|
18
|
+
date: 2010-12-18 00:00:00 +01:00
|
19
19
|
default_executable: dnsimple
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|