dnsimple 3.1.0 → 4.0.0

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.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +5 -0
  3. data/.rubocop_dnsimple.yml +24 -18
  4. data/CHANGELOG.md +17 -5
  5. data/CONTRIBUTING.md +2 -2
  6. data/Gemfile +0 -1
  7. data/README.md +14 -3
  8. data/dnsimple.gemspec +1 -1
  9. data/lib/dnsimple/client.rb +5 -5
  10. data/lib/dnsimple/client/certificates.rb +89 -0
  11. data/lib/dnsimple/client/clients.rb +37 -0
  12. data/lib/dnsimple/client/collaborators.rb +76 -0
  13. data/lib/dnsimple/client/domains_pushes.rb +97 -0
  14. data/lib/dnsimple/client/registrar.rb +2 -2
  15. data/lib/dnsimple/client/registrar_delegation.rb +42 -0
  16. data/lib/dnsimple/client/services_domains.rb +82 -0
  17. data/lib/dnsimple/client/templates.rb +0 -5
  18. data/lib/dnsimple/client/templates_domains.rb +29 -0
  19. data/lib/dnsimple/client/vanity_name_servers.rb +47 -0
  20. data/lib/dnsimple/client/zones.rb +17 -0
  21. data/lib/dnsimple/client/zones_records.rb +9 -9
  22. data/lib/dnsimple/struct.rb +6 -1
  23. data/lib/dnsimple/struct/certificate.rb +37 -0
  24. data/lib/dnsimple/struct/certificate_bundle.rb +24 -0
  25. data/lib/dnsimple/struct/collaborator.rb +34 -0
  26. data/lib/dnsimple/struct/domain_push.rb +28 -0
  27. data/lib/dnsimple/struct/tld.rb +12 -0
  28. data/lib/dnsimple/struct/zone_file.rb +10 -0
  29. data/lib/dnsimple/struct/{record.rb → zone_record.rb} +4 -1
  30. data/lib/dnsimple/version.rb +1 -1
  31. data/spec/dnsimple/client/accounts_spec.rb +1 -1
  32. data/spec/dnsimple/client/certificates_spec.rb +206 -0
  33. data/spec/dnsimple/client/collaborators_spec.rb +162 -0
  34. data/spec/dnsimple/client/contacts_spec.rb +5 -5
  35. data/spec/dnsimple/client/domains_email_forwards_spec.rb +5 -5
  36. data/spec/dnsimple/client/domains_pushes_spec.rb +162 -0
  37. data/spec/dnsimple/client/domains_spec.rb +6 -6
  38. data/spec/dnsimple/client/registrar_delegation_spec.rb +51 -0
  39. data/spec/dnsimple/client/registrar_spec.rb +6 -6
  40. data/spec/dnsimple/client/registrar_whois_privacy_spec.rb +4 -4
  41. data/spec/dnsimple/client/services_domains_spec.rb +115 -0
  42. data/spec/dnsimple/client/services_spec.rb +1 -1
  43. data/spec/dnsimple/client/templates_domains_spec.rb +32 -0
  44. data/spec/dnsimple/client/templates_records_spec.rb +1 -1
  45. data/spec/dnsimple/client/templates_spec.rb +25 -1
  46. data/spec/dnsimple/client/tlds_spec.rb +8 -4
  47. data/spec/dnsimple/client/vanity_name_servers_spec.rb +54 -0
  48. data/spec/dnsimple/client/webhooks_spec.rb +2 -2
  49. data/spec/dnsimple/client/zones_records_spec.rb +34 -23
  50. data/spec/dnsimple/client/zones_spec.rb +40 -4
  51. data/spec/fixtures.http/acceptPush/success.http +17 -0
  52. data/spec/fixtures.http/addCollaborator/invite-success.http +21 -0
  53. data/spec/fixtures.http/addCollaborator/success.http +21 -0
  54. data/spec/fixtures.http/appliedServices/success.http +21 -0
  55. data/spec/fixtures.http/applyService/created.http +17 -0
  56. data/spec/fixtures.http/applyTemplate/success.http +13 -0
  57. data/spec/fixtures.http/changeDomainDelegationFromVanity/success.http +17 -0
  58. data/spec/fixtures.http/changeDomainDelegationToVanity/success.http +21 -0
  59. data/spec/fixtures.http/createZoneRecord/created.http +13 -9
  60. data/spec/fixtures.http/disableVanityNameServers/success.http +17 -0
  61. data/spec/fixtures.http/downloadCertificate/success.http +21 -0
  62. data/spec/fixtures.http/enableVanityNameServers/success.http +21 -0
  63. data/spec/fixtures.http/getCertificate/success.http +21 -0
  64. data/spec/fixtures.http/getCertificatePrivateKey/success.http +21 -0
  65. data/spec/fixtures.http/getTld/success.http +13 -9
  66. data/spec/fixtures.http/getZoneFile/success.http +21 -0
  67. data/spec/fixtures.http/getZoneRecord/success.http +13 -9
  68. data/spec/fixtures.http/initiatePush/success.http +21 -0
  69. data/spec/fixtures.http/{accounts → listAccounts}/success-account.http +0 -0
  70. data/spec/fixtures.http/{accounts → listAccounts}/success-user.http +0 -0
  71. data/spec/fixtures.http/listCertificates/success.http +21 -0
  72. data/spec/fixtures.http/listCollaborators/success.http +21 -0
  73. data/spec/fixtures.http/listPushes/success.http +21 -0
  74. data/spec/fixtures.http/listTlds/success.http +13 -9
  75. data/spec/fixtures.http/listZoneRecords/success.http +13 -9
  76. data/spec/fixtures.http/notfound-certificate.http +16 -0
  77. data/spec/fixtures.http/notfound-collaborator.http +16 -0
  78. data/spec/fixtures.http/notfound-contact.http +1 -1
  79. data/spec/fixtures.http/notfound-domainpush.http +12 -0
  80. data/spec/fixtures.http/rejectPush/success.http +17 -0
  81. data/spec/fixtures.http/removeCollaborator/success.http +17 -0
  82. data/spec/fixtures.http/unapplyService/success.http +17 -0
  83. data/spec/fixtures.http/updateZoneRecord/success.http +13 -9
  84. metadata +80 -10
@@ -1,17 +1,21 @@
1
1
  HTTP/1.1 200 OK
2
2
  Server: nginx
3
- Date: Thu, 07 Jan 2016 16:33:47 GMT
3
+ Date: Wed, 05 Oct 2016 09:27:02 GMT
4
4
  Content-Type: application/json; charset=utf-8
5
5
  Transfer-Encoding: chunked
6
6
  Connection: keep-alive
7
- Status: 200 OK
8
- X-RateLimit-Limit: 4000
9
- X-RateLimit-Remaining: 3994
10
- X-RateLimit-Reset: 1452184426
11
- ETag: W/"1ae3e2e65dbcc2c2a7237e3e564129dd"
7
+ X-RateLimit-Limit: 2400
8
+ X-RateLimit-Remaining: 2397
9
+ X-RateLimit-Reset: 1475662531
10
+ ETag: W/"4a6291c6424d22726fb7087cfdf99ab9"
12
11
  Cache-Control: max-age=0, private, must-revalidate
13
- X-Request-Id: 9b361b57-43e2-47df-9f00-e7c252bc4d41
14
- X-Runtime: 0.107990
12
+ X-Request-Id: 8a2279ac-709e-42ac-8964-95a5534acfb9
13
+ X-Runtime: 0.271719
14
+ X-Content-Type-Options: nosniff
15
+ X-Download-Options: noopen
16
+ X-Frame-Options: DENY
17
+ X-Permitted-Cross-Domain-Policies: none
18
+ X-XSS-Protection: 1; mode=block
15
19
  Strict-Transport-Security: max-age=31536000
16
20
 
17
- {"data":[{"id":64779,"zone_id":"example.com","parent_id":null,"name":"","content":"ns1.dnsimple.com admin.dnsimple.com 1452184205 86400 7200 604800 300","ttl":3600,"priority":null,"type":"SOA","system_record":true,"created_at":"2016-01-07T16:30:05.379Z","updated_at":"2016-01-07T16:30:05.379Z"},{"id":64780,"zone_id":"example.com","parent_id":null,"name":"","content":"ns1.dnsimple.com","ttl":3600,"priority":null,"type":"NS","system_record":true,"created_at":"2016-01-07T16:30:05.422Z","updated_at":"2016-01-07T16:30:05.422Z"},{"id":64781,"zone_id":"example.com","parent_id":null,"name":"","content":"ns2.dnsimple.com","ttl":3600,"priority":null,"type":"NS","system_record":true,"created_at":"2016-01-07T16:30:05.433Z","updated_at":"2016-01-07T16:30:05.433Z"},{"id":64782,"zone_id":"example.com","parent_id":null,"name":"","content":"ns3.dnsimple.com","ttl":3600,"priority":null,"type":"NS","system_record":true,"created_at":"2016-01-07T16:30:05.445Z","updated_at":"2016-01-07T16:30:05.445Z"},{"id":64783,"zone_id":"example.com","parent_id":null,"name":"","content":"ns4.dnsimple.com","ttl":3600,"priority":null,"type":"NS","system_record":true,"created_at":"2016-01-07T16:30:05.457Z","updated_at":"2016-01-07T16:30:05.457Z"}],"pagination":{"current_page":1,"per_page":30,"total_entries":5,"total_pages":1}}
21
+ {"data":[{"id":1,"zone_id":"example.com","parent_id":null,"name":"","content":"ns1.dnsimple.com admin.dnsimple.com 1458642070 86400 7200 604800 300","ttl":3600,"priority":null,"type":"SOA","regions":["global"],"system_record":true,"created_at":"2016-03-22T10:20:53.504Z","updated_at":"2016-10-05T09:26:38.001Z"},{"id":69061,"zone_id":"example-1458642023.com","parent_id":null,"name":"","content":"ns1.dnsimple.com","ttl":3600,"priority":null,"type":"NS","regions":["global"],"system_record":true,"created_at":"2016-03-22T10:20:53.574Z","updated_at":"2016-03-22T10:20:53.574Z"},{"id":2,"zone_id":"example.com","parent_id":null,"name":"","content":"ns2.dnsimple.com","ttl":3600,"priority":null,"type":"NS","regions":["global"],"system_record":true,"created_at":"2016-03-22T10:20:53.593Z","updated_at":"2016-03-22T10:20:53.593Z"},{"id":3,"zone_id":"example.com","parent_id":null,"name":"","content":"ns3.dnsimple.com","ttl":3600,"priority":null,"type":"NS","regions":["global"],"system_record":true,"created_at":"2016-03-22T10:20:53.612Z","updated_at":"2016-03-22T10:20:53.612Z"},{"id":4,"zone_id":"example.com","parent_id":null,"name":"","content":"ns4.dnsimple.com","ttl":3600,"priority":null,"type":"NS","regions":["global"],"system_record":true,"created_at":"2016-03-22T10:20:53.633Z","updated_at":"2016-03-22T10:20:53.633Z"}],"pagination":{"current_page":1,"per_page":30,"total_entries":5,"total_pages":1}}
@@ -0,0 +1,16 @@
1
+ HTTP/1.1 404 Not Found
2
+ Server: nginx
3
+ Date: Tue, 19 Jul 2016 08:56:34 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Cache-Control: no-cache
8
+ X-Request-Id: 9a51fa7e-cc9b-498b-bf8d-ee3b2819c0c6
9
+ X-Runtime: 0.040469
10
+ X-Content-Type-Options: nosniff
11
+ X-Download-Options: noopen
12
+ X-Frame-Options: DENY
13
+ X-Permitted-Cross-Domain-Policies: none
14
+ X-XSS-Protection: 1; mode=block
15
+
16
+ {"message":"Certificate `0` not found"}
@@ -0,0 +1,16 @@
1
+ HTTP/1.1 404 Not Found
2
+ Server: nginx
3
+ Date: Mon, 21 Nov 2016 09:32:48 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Cache-Control: no-cache
8
+ X-Request-Id: 3e76b10b-412c-42ef-87d1-f8ff327df997
9
+ X-Runtime: 0.030250
10
+ X-Content-Type-Options: nosniff
11
+ X-Download-Options: noopen
12
+ X-Frame-Options: DENY
13
+ X-Permitted-Cross-Domain-Policies: none
14
+ X-XSS-Protection: 1; mode=block
15
+
16
+ {"message":"Membership `0` not found"}
@@ -9,4 +9,4 @@ Cache-Control: no-cache
9
9
  X-Request-Id: a57d4e23-3155-477e-8469-e897b27c03e5
10
10
  X-Runtime: 0.014159
11
11
 
12
- {"message":"Contact `0` not found"}
12
+ {"message":"Contact `0` not found"}
@@ -0,0 +1,12 @@
1
+ HTTP/1.1 404 Not Found
2
+ Server: nginx
3
+ Date: Thu, 04 Feb 2016 14:44:56 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 404 Not Found
8
+ Cache-Control: no-cache
9
+ X-Request-Id: 50eea494-cc14-4db0-bc11-306aa525bbfd
10
+ X-Runtime: 0.028036
11
+
12
+ {"message":"Domain push `0` not found"}
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 204 No Content
2
+ Server: nginx
3
+ Date: Thu, 11 Aug 2016 10:24:54 GMT
4
+ Connection: keep-alive
5
+ X-RateLimit-Limit: 2400
6
+ X-RateLimit-Remaining: 2391
7
+ X-RateLimit-Reset: 1470913059
8
+ Cache-Control: no-cache
9
+ X-Request-Id: c0258478-1392-49b2-9b94-67b173acae12
10
+ X-Runtime: 0.174739
11
+ X-Content-Type-Options: nosniff
12
+ X-Download-Options: noopen
13
+ X-Frame-Options: DENY
14
+ X-Permitted-Cross-Domain-Policies: none
15
+ X-XSS-Protection: 1; mode=block
16
+ Strict-Transport-Security: max-age=31536000
17
+
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 204 No Content
2
+ Server: nginx
3
+ Date: Fri, 07 Oct 2016 09:08:51 GMT
4
+ Connection: keep-alive
5
+ X-RateLimit-Limit: 2400
6
+ X-RateLimit-Remaining: 2395
7
+ X-RateLimit-Reset: 1475833773
8
+ Cache-Control: no-cache
9
+ X-Request-Id: 732cdd0a-9ae5-4853-93ef-3511652b687a
10
+ X-Runtime: 0.098437
11
+ X-Content-Type-Options: nosniff
12
+ X-Download-Options: noopen
13
+ X-Frame-Options: DENY
14
+ X-Permitted-Cross-Domain-Policies: none
15
+ X-XSS-Protection: 1; mode=block
16
+ Strict-Transport-Security: max-age=31536000
17
+
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 204 No Content
2
+ Server: nginx
3
+ Date: Sat, 09 Jul 2016 11:13:48 GMT
4
+ Connection: keep-alive
5
+ X-RateLimit-Limit: 2400
6
+ X-RateLimit-Remaining: 2397
7
+ X-RateLimit-Reset: 1468066326
8
+ Cache-Control: no-cache
9
+ X-Request-Id: bb164b01-636a-4d02-acb5-a829afc5ea8c
10
+ X-Runtime: 0.070508
11
+ X-Content-Type-Options: nosniff
12
+ X-Download-Options: noopen
13
+ X-Frame-Options: DENY
14
+ X-Permitted-Cross-Domain-Policies: none
15
+ X-XSS-Protection: 1; mode=block
16
+ Strict-Transport-Security: max-age=31536000
17
+
@@ -1,17 +1,21 @@
1
1
  HTTP/1.1 200 OK
2
2
  Server: nginx
3
- Date: Thu, 07 Jan 2016 17:54:46 GMT
3
+ Date: Wed, 05 Oct 2016 09:59:48 GMT
4
4
  Content-Type: application/json; charset=utf-8
5
5
  Transfer-Encoding: chunked
6
6
  Connection: keep-alive
7
- Status: 200 OK
8
- X-RateLimit-Limit: 4000
9
- X-RateLimit-Remaining: 3988
10
- X-RateLimit-Reset: 1452189285
11
- ETag: W/"e870cbe9707d7c1acd0bdb3e4b756cf9"
7
+ X-RateLimit-Limit: 2400
8
+ X-RateLimit-Remaining: 2393
9
+ X-RateLimit-Reset: 1475662530
10
+ ETag: W/"92c807156882e555af8f7a5b93350e44"
12
11
  Cache-Control: max-age=0, private, must-revalidate
13
- X-Request-Id: f320b46c-a7cd-41fe-a061-f38b7a92391f
14
- X-Runtime: 0.103506
12
+ X-Request-Id: 3b630702-46a9-4449-a320-b7ac903d2127
13
+ X-Runtime: 0.405810
14
+ X-Content-Type-Options: nosniff
15
+ X-Download-Options: noopen
16
+ X-Frame-Options: DENY
17
+ X-Permitted-Cross-Domain-Policies: none
18
+ X-XSS-Protection: 1; mode=block
15
19
  Strict-Transport-Security: max-age=31536000
16
20
 
17
- {"data":{"id":64784,"domain_id":5841,"parent_id":null,"name":"www","content":"127.0.0.1","ttl":600,"priority":null,"type":"A","system_record":false,"created_at":"2016-01-07T17:45:13.653Z","updated_at":"2016-01-07T17:54:46.722Z"}}
21
+ {"data":{"id":5,"zone_id":"example.com","parent_id":null,"name":"","content":"mxb.example.com","ttl":3600,"priority":20,"type":"MX","regions":["global"],"system_record":false,"created_at":"2016-10-05T09:51:35.313Z","updated_at":"2016-10-05T09:51:35.313Z"}}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnsimple
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony Eden
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2016-06-21 00:00:00.000000000 Z
15
+ date: 2016-11-24 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: httparty
@@ -115,10 +115,13 @@ files:
115
115
  - lib/dnsimple.rb
116
116
  - lib/dnsimple/client.rb
117
117
  - lib/dnsimple/client/accounts.rb
118
+ - lib/dnsimple/client/certificates.rb
118
119
  - lib/dnsimple/client/clients.rb
120
+ - lib/dnsimple/client/collaborators.rb
119
121
  - lib/dnsimple/client/contacts.rb
120
122
  - lib/dnsimple/client/domains.rb
121
123
  - lib/dnsimple/client/domains_email_forwards.rb
124
+ - lib/dnsimple/client/domains_pushes.rb
122
125
  - lib/dnsimple/client/identity.rb
123
126
  - lib/dnsimple/client/oauth.rb
124
127
  - lib/dnsimple/client/registrar.rb
@@ -126,9 +129,12 @@ files:
126
129
  - lib/dnsimple/client/registrar_delegation.rb
127
130
  - lib/dnsimple/client/registrar_whois_privacy.rb
128
131
  - lib/dnsimple/client/services.rb
132
+ - lib/dnsimple/client/services_domains.rb
129
133
  - lib/dnsimple/client/templates.rb
134
+ - lib/dnsimple/client/templates_domains.rb
130
135
  - lib/dnsimple/client/templates_records.rb
131
136
  - lib/dnsimple/client/tlds.rb
137
+ - lib/dnsimple/client/vanity_name_servers.rb
132
138
  - lib/dnsimple/client/webhooks.rb
133
139
  - lib/dnsimple/client/zones.rb
134
140
  - lib/dnsimple/client/zones_records.rb
@@ -139,13 +145,16 @@ files:
139
145
  - lib/dnsimple/response.rb
140
146
  - lib/dnsimple/struct.rb
141
147
  - lib/dnsimple/struct/account.rb
148
+ - lib/dnsimple/struct/certificate.rb
149
+ - lib/dnsimple/struct/certificate_bundle.rb
150
+ - lib/dnsimple/struct/collaborator.rb
142
151
  - lib/dnsimple/struct/contact.rb
143
152
  - lib/dnsimple/struct/domain.rb
144
153
  - lib/dnsimple/struct/domain_check.rb
154
+ - lib/dnsimple/struct/domain_push.rb
145
155
  - lib/dnsimple/struct/email_forward.rb
146
156
  - lib/dnsimple/struct/extended_attribute.rb
147
157
  - lib/dnsimple/struct/oauth_token.rb
148
- - lib/dnsimple/struct/record.rb
149
158
  - lib/dnsimple/struct/service.rb
150
159
  - lib/dnsimple/struct/template.rb
151
160
  - lib/dnsimple/struct/template_record.rb
@@ -155,11 +164,16 @@ files:
155
164
  - lib/dnsimple/struct/whoami.rb
156
165
  - lib/dnsimple/struct/whois_privacy.rb
157
166
  - lib/dnsimple/struct/zone.rb
167
+ - lib/dnsimple/struct/zone_file.rb
168
+ - lib/dnsimple/struct/zone_record.rb
158
169
  - lib/dnsimple/version.rb
159
170
  - spec/dnsimple/client/accounts_spec.rb
171
+ - spec/dnsimple/client/certificates_spec.rb
160
172
  - spec/dnsimple/client/client_service_spec.rb
173
+ - spec/dnsimple/client/collaborators_spec.rb
161
174
  - spec/dnsimple/client/contacts_spec.rb
162
175
  - spec/dnsimple/client/domains_email_forwards_spec.rb
176
+ - spec/dnsimple/client/domains_pushes_spec.rb
163
177
  - spec/dnsimple/client/domains_spec.rb
164
178
  - spec/dnsimple/client/identity_spec.rb
165
179
  - spec/dnsimple/client/oauth_spec.rb
@@ -167,10 +181,13 @@ files:
167
181
  - spec/dnsimple/client/registrar_delegation_spec.rb
168
182
  - spec/dnsimple/client/registrar_spec.rb
169
183
  - spec/dnsimple/client/registrar_whois_privacy_spec.rb
184
+ - spec/dnsimple/client/services_domains_spec.rb
170
185
  - spec/dnsimple/client/services_spec.rb
186
+ - spec/dnsimple/client/templates_domains_spec.rb
171
187
  - spec/dnsimple/client/templates_records_spec.rb
172
188
  - spec/dnsimple/client/templates_spec.rb
173
189
  - spec/dnsimple/client/tlds_spec.rb
190
+ - spec/dnsimple/client/vanity_name_servers_spec.rb
174
191
  - spec/dnsimple/client/webhooks_spec.rb
175
192
  - spec/dnsimple/client/zones_records_spec.rb
176
193
  - spec/dnsimple/client/zones_spec.rb
@@ -178,10 +195,16 @@ files:
178
195
  - spec/dnsimple/extra_spec.rb
179
196
  - spec/dnsimple/options/base_spec.rb
180
197
  - spec/dnsimple/options/list_options_spec.rb
181
- - spec/fixtures.http/accounts/success-account.http
182
- - spec/fixtures.http/accounts/success-user.http
198
+ - spec/fixtures.http/acceptPush/success.http
199
+ - spec/fixtures.http/addCollaborator/invite-success.http
200
+ - spec/fixtures.http/addCollaborator/success.http
201
+ - spec/fixtures.http/appliedServices/success.http
202
+ - spec/fixtures.http/applyService/created.http
203
+ - spec/fixtures.http/applyTemplate/success.http
183
204
  - spec/fixtures.http/badgateway.http
184
205
  - spec/fixtures.http/changeDomainDelegation/success.http
206
+ - spec/fixtures.http/changeDomainDelegationFromVanity/success.http
207
+ - spec/fixtures.http/changeDomainDelegationToVanity/success.http
185
208
  - spec/fixtures.http/checkDomain/success.http
186
209
  - spec/fixtures.http/createContact/created.http
187
210
  - spec/fixtures.http/createDomain/created.http
@@ -198,10 +221,15 @@ files:
198
221
  - spec/fixtures.http/deleteWebhook/success.http
199
222
  - spec/fixtures.http/deleteZoneRecord/success.http
200
223
  - spec/fixtures.http/disableAutoRenewal/success.http
224
+ - spec/fixtures.http/disableVanityNameServers/success.http
201
225
  - spec/fixtures.http/disableWhoisPrivacy/success.http
226
+ - spec/fixtures.http/downloadCertificate/success.http
202
227
  - spec/fixtures.http/enableAutoRenewal/success.http
228
+ - spec/fixtures.http/enableVanityNameServers/success.http
203
229
  - spec/fixtures.http/enableWhoisPrivacy/created.http
204
230
  - spec/fixtures.http/enableWhoisPrivacy/success.http
231
+ - spec/fixtures.http/getCertificate/success.http
232
+ - spec/fixtures.http/getCertificatePrivateKey/success.http
205
233
  - spec/fixtures.http/getContact/success.http
206
234
  - spec/fixtures.http/getDomain/success.http
207
235
  - spec/fixtures.http/getDomainDelegation/success-empty.http
@@ -216,10 +244,17 @@ files:
216
244
  - spec/fixtures.http/getWebhook/success.http
217
245
  - spec/fixtures.http/getWhoisPrivacy/success.http
218
246
  - spec/fixtures.http/getZone/success.http
247
+ - spec/fixtures.http/getZoneFile/success.http
219
248
  - spec/fixtures.http/getZoneRecord/success.http
249
+ - spec/fixtures.http/initiatePush/success.http
250
+ - spec/fixtures.http/listAccounts/success-account.http
251
+ - spec/fixtures.http/listAccounts/success-user.http
252
+ - spec/fixtures.http/listCertificates/success.http
253
+ - spec/fixtures.http/listCollaborators/success.http
220
254
  - spec/fixtures.http/listContacts/success.http
221
255
  - spec/fixtures.http/listDomains/success.http
222
256
  - spec/fixtures.http/listEmailForwards/success.http
257
+ - spec/fixtures.http/listPushes/success.http
223
258
  - spec/fixtures.http/listServices/success.http
224
259
  - spec/fixtures.http/listTemplateRecords/success.http
225
260
  - spec/fixtures.http/listTemplates/success.http
@@ -228,8 +263,11 @@ files:
228
263
  - spec/fixtures.http/listZoneRecords/success.http
229
264
  - spec/fixtures.http/listZones/success.http
230
265
  - spec/fixtures.http/method-not-allowed.http
266
+ - spec/fixtures.http/notfound-certificate.http
267
+ - spec/fixtures.http/notfound-collaborator.http
231
268
  - spec/fixtures.http/notfound-contact.http
232
269
  - spec/fixtures.http/notfound-domain.http
270
+ - spec/fixtures.http/notfound-domainpush.http
233
271
  - spec/fixtures.http/notfound-emailforward.http
234
272
  - spec/fixtures.http/notfound-record.http
235
273
  - spec/fixtures.http/notfound-template.http
@@ -240,6 +278,8 @@ files:
240
278
  - spec/fixtures.http/pages-2of3.http
241
279
  - spec/fixtures.http/pages-3of3.http
242
280
  - spec/fixtures.http/registerDomain/success.http
281
+ - spec/fixtures.http/rejectPush/success.http
282
+ - spec/fixtures.http/removeCollaborator/success.http
243
283
  - spec/fixtures.http/renewDomain/error-tooearly.http
244
284
  - spec/fixtures.http/renewDomain/success.http
245
285
  - spec/fixtures.http/resetDomainToken/success.http
@@ -248,6 +288,7 @@ files:
248
288
  - spec/fixtures.http/transferDomain/error-missing-authcode.http
249
289
  - spec/fixtures.http/transferDomain/success.http
250
290
  - spec/fixtures.http/transferDomainOut/success.http
291
+ - spec/fixtures.http/unapplyService/success.http
251
292
  - spec/fixtures.http/updateContact/success.http
252
293
  - spec/fixtures.http/updateTemplate/success.http
253
294
  - spec/fixtures.http/updateZoneRecord/success.http
@@ -257,7 +298,7 @@ files:
257
298
  - spec/spec_helper.rb
258
299
  - spec/support/helpers.rb
259
300
  - spec/support/webmock.rb
260
- homepage: https://github.com/aetrion/dnsimple-ruby
301
+ homepage: https://github.com/dnsimple/dnsimple-ruby
261
302
  licenses: []
262
303
  metadata: {}
263
304
  post_install_message:
@@ -276,15 +317,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
276
317
  version: '0'
277
318
  requirements: []
278
319
  rubyforge_project:
279
- rubygems_version: 2.6.3
320
+ rubygems_version: 2.5.1
280
321
  signing_key:
281
322
  specification_version: 4
282
323
  summary: The DNSimple API client for Ruby
283
324
  test_files:
284
325
  - spec/dnsimple/client/accounts_spec.rb
326
+ - spec/dnsimple/client/certificates_spec.rb
285
327
  - spec/dnsimple/client/client_service_spec.rb
328
+ - spec/dnsimple/client/collaborators_spec.rb
286
329
  - spec/dnsimple/client/contacts_spec.rb
287
330
  - spec/dnsimple/client/domains_email_forwards_spec.rb
331
+ - spec/dnsimple/client/domains_pushes_spec.rb
288
332
  - spec/dnsimple/client/domains_spec.rb
289
333
  - spec/dnsimple/client/identity_spec.rb
290
334
  - spec/dnsimple/client/oauth_spec.rb
@@ -292,10 +336,13 @@ test_files:
292
336
  - spec/dnsimple/client/registrar_delegation_spec.rb
293
337
  - spec/dnsimple/client/registrar_spec.rb
294
338
  - spec/dnsimple/client/registrar_whois_privacy_spec.rb
339
+ - spec/dnsimple/client/services_domains_spec.rb
295
340
  - spec/dnsimple/client/services_spec.rb
341
+ - spec/dnsimple/client/templates_domains_spec.rb
296
342
  - spec/dnsimple/client/templates_records_spec.rb
297
343
  - spec/dnsimple/client/templates_spec.rb
298
344
  - spec/dnsimple/client/tlds_spec.rb
345
+ - spec/dnsimple/client/vanity_name_servers_spec.rb
299
346
  - spec/dnsimple/client/webhooks_spec.rb
300
347
  - spec/dnsimple/client/zones_records_spec.rb
301
348
  - spec/dnsimple/client/zones_spec.rb
@@ -303,10 +350,16 @@ test_files:
303
350
  - spec/dnsimple/extra_spec.rb
304
351
  - spec/dnsimple/options/base_spec.rb
305
352
  - spec/dnsimple/options/list_options_spec.rb
306
- - spec/fixtures.http/accounts/success-account.http
307
- - spec/fixtures.http/accounts/success-user.http
353
+ - spec/fixtures.http/acceptPush/success.http
354
+ - spec/fixtures.http/addCollaborator/invite-success.http
355
+ - spec/fixtures.http/addCollaborator/success.http
356
+ - spec/fixtures.http/appliedServices/success.http
357
+ - spec/fixtures.http/applyService/created.http
358
+ - spec/fixtures.http/applyTemplate/success.http
308
359
  - spec/fixtures.http/badgateway.http
309
360
  - spec/fixtures.http/changeDomainDelegation/success.http
361
+ - spec/fixtures.http/changeDomainDelegationFromVanity/success.http
362
+ - spec/fixtures.http/changeDomainDelegationToVanity/success.http
310
363
  - spec/fixtures.http/checkDomain/success.http
311
364
  - spec/fixtures.http/createContact/created.http
312
365
  - spec/fixtures.http/createDomain/created.http
@@ -323,10 +376,15 @@ test_files:
323
376
  - spec/fixtures.http/deleteWebhook/success.http
324
377
  - spec/fixtures.http/deleteZoneRecord/success.http
325
378
  - spec/fixtures.http/disableAutoRenewal/success.http
379
+ - spec/fixtures.http/disableVanityNameServers/success.http
326
380
  - spec/fixtures.http/disableWhoisPrivacy/success.http
381
+ - spec/fixtures.http/downloadCertificate/success.http
327
382
  - spec/fixtures.http/enableAutoRenewal/success.http
383
+ - spec/fixtures.http/enableVanityNameServers/success.http
328
384
  - spec/fixtures.http/enableWhoisPrivacy/created.http
329
385
  - spec/fixtures.http/enableWhoisPrivacy/success.http
386
+ - spec/fixtures.http/getCertificate/success.http
387
+ - spec/fixtures.http/getCertificatePrivateKey/success.http
330
388
  - spec/fixtures.http/getContact/success.http
331
389
  - spec/fixtures.http/getDomain/success.http
332
390
  - spec/fixtures.http/getDomainDelegation/success-empty.http
@@ -341,10 +399,17 @@ test_files:
341
399
  - spec/fixtures.http/getWebhook/success.http
342
400
  - spec/fixtures.http/getWhoisPrivacy/success.http
343
401
  - spec/fixtures.http/getZone/success.http
402
+ - spec/fixtures.http/getZoneFile/success.http
344
403
  - spec/fixtures.http/getZoneRecord/success.http
404
+ - spec/fixtures.http/initiatePush/success.http
405
+ - spec/fixtures.http/listAccounts/success-account.http
406
+ - spec/fixtures.http/listAccounts/success-user.http
407
+ - spec/fixtures.http/listCertificates/success.http
408
+ - spec/fixtures.http/listCollaborators/success.http
345
409
  - spec/fixtures.http/listContacts/success.http
346
410
  - spec/fixtures.http/listDomains/success.http
347
411
  - spec/fixtures.http/listEmailForwards/success.http
412
+ - spec/fixtures.http/listPushes/success.http
348
413
  - spec/fixtures.http/listServices/success.http
349
414
  - spec/fixtures.http/listTemplateRecords/success.http
350
415
  - spec/fixtures.http/listTemplates/success.http
@@ -353,8 +418,11 @@ test_files:
353
418
  - spec/fixtures.http/listZoneRecords/success.http
354
419
  - spec/fixtures.http/listZones/success.http
355
420
  - spec/fixtures.http/method-not-allowed.http
421
+ - spec/fixtures.http/notfound-certificate.http
422
+ - spec/fixtures.http/notfound-collaborator.http
356
423
  - spec/fixtures.http/notfound-contact.http
357
424
  - spec/fixtures.http/notfound-domain.http
425
+ - spec/fixtures.http/notfound-domainpush.http
358
426
  - spec/fixtures.http/notfound-emailforward.http
359
427
  - spec/fixtures.http/notfound-record.http
360
428
  - spec/fixtures.http/notfound-template.http
@@ -365,6 +433,8 @@ test_files:
365
433
  - spec/fixtures.http/pages-2of3.http
366
434
  - spec/fixtures.http/pages-3of3.http
367
435
  - spec/fixtures.http/registerDomain/success.http
436
+ - spec/fixtures.http/rejectPush/success.http
437
+ - spec/fixtures.http/removeCollaborator/success.http
368
438
  - spec/fixtures.http/renewDomain/error-tooearly.http
369
439
  - spec/fixtures.http/renewDomain/success.http
370
440
  - spec/fixtures.http/resetDomainToken/success.http
@@ -373,6 +443,7 @@ test_files:
373
443
  - spec/fixtures.http/transferDomain/error-missing-authcode.http
374
444
  - spec/fixtures.http/transferDomain/success.http
375
445
  - spec/fixtures.http/transferDomainOut/success.http
446
+ - spec/fixtures.http/unapplyService/success.http
376
447
  - spec/fixtures.http/updateContact/success.http
377
448
  - spec/fixtures.http/updateTemplate/success.http
378
449
  - spec/fixtures.http/updateZoneRecord/success.http
@@ -382,4 +453,3 @@ test_files:
382
453
  - spec/spec_helper.rb
383
454
  - spec/support/helpers.rb
384
455
  - spec/support/webmock.rb
385
- has_rdoc: