dnsimple 5.2.0 → 7.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (185) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CODEOWNERS +1 -0
  3. data/.github/dependabot.yml +13 -0
  4. data/.github/workflows/ci.yml +63 -0
  5. data/.github/workflows/release.yml +19 -0
  6. data/.gitignore +3 -0
  7. data/.markdownlint.yaml +3 -0
  8. data/.rubocop.yml +7 -16
  9. data/.rubocop_dnsimple.yml +28 -55
  10. data/.rubocop_todo.yml +44 -5
  11. data/CHANGELOG.md +24 -10
  12. data/CONTRIBUTING.md +8 -23
  13. data/Gemfile +3 -1
  14. data/LICENSE.txt +1 -1
  15. data/README.md +7 -11
  16. data/UPGRADING.md +4 -5
  17. data/dnsimple.gemspec +1 -1
  18. data/lib/dnsimple/client/clients.rb +3 -2
  19. data/lib/dnsimple/client/domains.rb +0 -18
  20. data/lib/dnsimple/client/domains_delegation_signer_records.rb +5 -4
  21. data/lib/dnsimple/client/registrar.rb +23 -0
  22. data/lib/dnsimple/client/registrar_whois_privacy.rb +1 -1
  23. data/lib/dnsimple/client.rb +11 -3
  24. data/lib/dnsimple/default.rb +2 -2
  25. data/lib/dnsimple/error.rb +1 -1
  26. data/lib/dnsimple/extra.rb +3 -3
  27. data/lib/dnsimple/response.rb +1 -3
  28. data/lib/dnsimple/struct/certificate.rb +0 -19
  29. data/lib/dnsimple/struct/delegation_signer_record.rb +3 -0
  30. data/lib/dnsimple/struct/domain.rb +0 -20
  31. data/lib/dnsimple/struct/domain_price.rb +24 -0
  32. data/lib/dnsimple/struct/tld.rb +3 -0
  33. data/lib/dnsimple/struct.rb +1 -0
  34. data/lib/dnsimple/version.rb +1 -1
  35. data/spec/dnsimple/client/certificates_spec.rb +0 -1
  36. data/spec/dnsimple/client/client_service_spec.rb +1 -1
  37. data/spec/dnsimple/client/contacts_spec.rb +2 -2
  38. data/spec/dnsimple/client/domains_collaborators_spec.rb +2 -2
  39. data/spec/dnsimple/client/domains_delegation_signer_records_spec.rb +2 -1
  40. data/spec/dnsimple/client/domains_email_forwards_spec.rb +8 -8
  41. data/spec/dnsimple/client/domains_pushes_spec.rb +2 -2
  42. data/spec/dnsimple/client/domains_spec.rb +1 -29
  43. data/spec/dnsimple/client/registrar_delegation_spec.rb +2 -2
  44. data/spec/dnsimple/client/registrar_spec.rb +46 -3
  45. data/spec/dnsimple/client/services_domains_spec.rb +2 -4
  46. data/spec/dnsimple/client/services_spec.rb +1 -3
  47. data/spec/dnsimple/client/templates_records_spec.rb +1 -1
  48. data/spec/dnsimple/client/templates_spec.rb +2 -2
  49. data/spec/dnsimple/client/tlds_spec.rb +1 -0
  50. data/spec/dnsimple/client/webhooks_spec.rb +1 -1
  51. data/spec/dnsimple/client/zones_records_spec.rb +2 -2
  52. data/spec/dnsimple/client/zones_spec.rb +1 -1
  53. data/spec/dnsimple/client_spec.rb +15 -15
  54. data/spec/dnsimple/extra_spec.rb +1 -1
  55. data/spec/dnsimple/options/list_options_spec.rb +4 -4
  56. data/spec/fixtures.http/accounts/success-account.http +0 -1
  57. data/spec/fixtures.http/accounts/success-user.http +0 -1
  58. data/spec/fixtures.http/addCollaborator/invite-success.http +0 -1
  59. data/spec/fixtures.http/addCollaborator/success.http +0 -1
  60. data/spec/fixtures.http/appliedServices/success.http +0 -1
  61. data/spec/fixtures.http/cancelDomainTransfer/success.http +0 -1
  62. data/spec/fixtures.http/changeDomainDelegation/success.http +0 -1
  63. data/spec/fixtures.http/changeDomainDelegationToVanity/success.http +0 -1
  64. data/spec/fixtures.http/checkDomain/success.http +0 -1
  65. data/spec/fixtures.http/checkDomainPremiumPrice/error_400_not_a_premium_domain.http +18 -0
  66. data/spec/fixtures.http/checkDomainPremiumPrice/error_400_tld_not_supported.http +18 -0
  67. data/spec/fixtures.http/checkDomainPremiumPrice/success.http +20 -0
  68. data/spec/fixtures.http/checkZoneDistribution/error.http +0 -1
  69. data/spec/fixtures.http/checkZoneDistribution/failure.http +0 -1
  70. data/spec/fixtures.http/checkZoneDistribution/success.http +0 -1
  71. data/spec/fixtures.http/checkZoneRecordDistribution/error.http +0 -1
  72. data/spec/fixtures.http/checkZoneRecordDistribution/failure.http +0 -1
  73. data/spec/fixtures.http/checkZoneRecordDistribution/success.http +0 -1
  74. data/spec/fixtures.http/createContact/created.http +0 -1
  75. data/spec/fixtures.http/createDelegationSignerRecord/created.http +1 -2
  76. data/spec/fixtures.http/createDelegationSignerRecord/validation-error.http +0 -1
  77. data/spec/fixtures.http/createDomain/created.http +0 -1
  78. data/spec/fixtures.http/createEmailForward/created.http +21 -17
  79. data/spec/fixtures.http/createPrimaryServer/created.http +21 -0
  80. data/spec/fixtures.http/createSecondaryZone/created.http +21 -0
  81. data/spec/fixtures.http/createTemplate/created.http +0 -1
  82. data/spec/fixtures.http/createTemplateRecord/created.http +0 -1
  83. data/spec/fixtures.http/createWebhook/created.http +0 -1
  84. data/spec/fixtures.http/createZoneRecord/created-apex.http +0 -1
  85. data/spec/fixtures.http/createZoneRecord/created.http +0 -1
  86. data/spec/fixtures.http/deleteContact/error-contact-in-use.http +18 -0
  87. data/spec/fixtures.http/deleteEmailForward/success.http +12 -7
  88. data/spec/fixtures.http/disableDnssec/not-enabled.http +0 -1
  89. data/spec/fixtures.http/disableWhoisPrivacy/success.http +0 -1
  90. data/spec/fixtures.http/downloadCertificate/success.http +0 -1
  91. data/spec/fixtures.http/enableDnssec/success.http +0 -1
  92. data/spec/fixtures.http/enableVanityNameServers/success.http +0 -1
  93. data/spec/fixtures.http/enableWhoisPrivacy/created.http +0 -1
  94. data/spec/fixtures.http/enableWhoisPrivacy/success.http +0 -1
  95. data/spec/fixtures.http/getCertificate/success.http +0 -1
  96. data/spec/fixtures.http/getCertificatePrivateKey/success.http +0 -1
  97. data/spec/fixtures.http/getContact/success.http +0 -1
  98. data/spec/fixtures.http/getDelegationSignerRecord/success.http +1 -2
  99. data/spec/fixtures.http/getDnssec/success.http +0 -1
  100. data/spec/fixtures.http/getDomain/success.http +0 -1
  101. data/spec/fixtures.http/getDomainDelegation/success-empty.http +0 -1
  102. data/spec/fixtures.http/getDomainDelegation/success.http +0 -1
  103. data/spec/fixtures.http/getDomainPremiumPrice/failure.http +0 -1
  104. data/spec/fixtures.http/getDomainPremiumPrice/success.http +0 -1
  105. data/spec/fixtures.http/getDomainPrices/failure.http +19 -0
  106. data/spec/fixtures.http/getDomainPrices/success.http +21 -0
  107. data/spec/fixtures.http/getDomainTransfer/success.http +0 -1
  108. data/spec/fixtures.http/getEmailForward/success.http +14 -10
  109. data/spec/fixtures.http/getPrimaryServer/success.http +21 -0
  110. data/spec/fixtures.http/getService/success.http +0 -1
  111. data/spec/fixtures.http/getTemplate/success.http +0 -1
  112. data/spec/fixtures.http/getTemplateRecord/success.http +0 -1
  113. data/spec/fixtures.http/getTld/success.http +1 -2
  114. data/spec/fixtures.http/getTldExtendedAttributes/success-attributes.http +0 -1
  115. data/spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http +0 -1
  116. data/spec/fixtures.http/getTldExtendedAttributes/success.http +0 -1
  117. data/spec/fixtures.http/getWebhook/success.http +0 -1
  118. data/spec/fixtures.http/getWhoisPrivacy/success.http +0 -1
  119. data/spec/fixtures.http/getZone/success.http +0 -1
  120. data/spec/fixtures.http/getZoneFile/success.http +0 -1
  121. data/spec/fixtures.http/getZoneRecord/success.http +0 -1
  122. data/spec/fixtures.http/initiatePush/success.http +0 -1
  123. data/spec/fixtures.http/issueLetsencryptCertificate/success.http +0 -1
  124. data/spec/fixtures.http/issueRenewalLetsencryptCertificate/success.http +0 -1
  125. data/spec/fixtures.http/linkPrimaryServer/success.http +21 -0
  126. data/spec/fixtures.http/listAccounts/success-account.http +0 -1
  127. data/spec/fixtures.http/listAccounts/success-user.http +0 -1
  128. data/spec/fixtures.http/listCertificates/success.http +0 -1
  129. data/spec/fixtures.http/listCollaborators/success.http +0 -1
  130. data/spec/fixtures.http/listContacts/success.http +0 -1
  131. data/spec/fixtures.http/listDelegationSignerRecords/success.http +1 -2
  132. data/spec/fixtures.http/listDomains/success.http +0 -1
  133. data/spec/fixtures.http/listEmailForwards/success.http +0 -1
  134. data/spec/fixtures.http/listPrimaryServers/success.http +21 -0
  135. data/spec/fixtures.http/listPushes/success.http +0 -1
  136. data/spec/fixtures.http/listServices/success.http +0 -1
  137. data/spec/fixtures.http/listTemplateRecords/success.http +0 -1
  138. data/spec/fixtures.http/listTemplates/success.http +0 -1
  139. data/spec/fixtures.http/listTlds/success.http +1 -2
  140. data/spec/fixtures.http/listWebhooks/success.http +0 -1
  141. data/spec/fixtures.http/listZoneRecords/success.http +0 -1
  142. data/spec/fixtures.http/listZones/success.http +0 -1
  143. data/spec/fixtures.http/method-not-allowed.http +0 -1
  144. data/spec/fixtures.http/notfound-certificate.http +0 -1
  145. data/spec/fixtures.http/notfound-collaborator.http +0 -1
  146. data/spec/fixtures.http/notfound-contact.http +0 -1
  147. data/spec/fixtures.http/notfound-delegationsignerrecord.http +0 -1
  148. data/spec/fixtures.http/notfound-domain.http +0 -1
  149. data/spec/fixtures.http/notfound-domainpush.http +0 -1
  150. data/spec/fixtures.http/notfound-emailforward.http +0 -1
  151. data/spec/fixtures.http/notfound-record.http +0 -1
  152. data/spec/fixtures.http/notfound-template.http +0 -1
  153. data/spec/fixtures.http/notfound-webhook.http +0 -1
  154. data/spec/fixtures.http/notfound-whoisprivacy.http +0 -1
  155. data/spec/fixtures.http/notfound-zone.http +0 -1
  156. data/spec/fixtures.http/oauthAccessToken/error-invalid-request.http +0 -1
  157. data/spec/fixtures.http/oauthAccessToken/success.http +0 -1
  158. data/spec/fixtures.http/pages-1of3.http +0 -1
  159. data/spec/fixtures.http/pages-2of3.http +0 -1
  160. data/spec/fixtures.http/pages-3of3.http +0 -1
  161. data/spec/fixtures.http/purchaseLetsencryptCertificate/success.http +0 -1
  162. data/spec/fixtures.http/purchaseRenewalLetsencryptCertificate/success.http +0 -1
  163. data/spec/fixtures.http/registerDomain/success.http +0 -1
  164. data/spec/fixtures.http/renewDomain/error-tooearly.http +0 -1
  165. data/spec/fixtures.http/renewDomain/success.http +0 -1
  166. data/spec/fixtures.http/renewWhoisPrivacy/success.http +0 -1
  167. data/spec/fixtures.http/renewWhoisPrivacy/whois-privacy-duplicated-order.http +0 -1
  168. data/spec/fixtures.http/renewWhoisPrivacy/whois-privacy-not-found.http +0 -1
  169. data/spec/fixtures.http/response.http +0 -1
  170. data/spec/fixtures.http/transferDomain/error-indnsimple.http +0 -1
  171. data/spec/fixtures.http/transferDomain/error-missing-authcode.http +0 -1
  172. data/spec/fixtures.http/transferDomain/success.http +0 -1
  173. data/spec/fixtures.http/unlinkPrimaryServer/success.http +21 -0
  174. data/spec/fixtures.http/updateContact/success.http +0 -1
  175. data/spec/fixtures.http/updateTemplate/success.http +0 -1
  176. data/spec/fixtures.http/updateZoneRecord/success.http +0 -1
  177. data/spec/fixtures.http/validation-error.http +0 -1
  178. data/spec/fixtures.http/whoami/success-account.http +0 -1
  179. data/spec/fixtures.http/whoami/success-user.http +0 -1
  180. data/spec/fixtures.http/whoami/success.http +0 -1
  181. data/spec/spec_helper.rb +2 -2
  182. metadata +23 -177
  183. data/.dependabot/config.yml +0 -9
  184. data/.travis.yml +0 -17
  185. data/spec/fixtures.http/resetDomainToken/success.http +0 -17
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnsimple
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.0
4
+ version: 7.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - DNSimple
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-22 00:00:00.000000000 Z
11
+ date: 2022-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -88,13 +88,16 @@ extensions: []
88
88
  extra_rdoc_files:
89
89
  - LICENSE.txt
90
90
  files:
91
- - ".dependabot/config.yml"
91
+ - ".github/CODEOWNERS"
92
+ - ".github/dependabot.yml"
93
+ - ".github/workflows/ci.yml"
94
+ - ".github/workflows/release.yml"
92
95
  - ".gitignore"
96
+ - ".markdownlint.yaml"
93
97
  - ".rspec"
94
98
  - ".rubocop.yml"
95
99
  - ".rubocop_dnsimple.yml"
96
100
  - ".rubocop_todo.yml"
97
- - ".travis.yml"
98
101
  - CHANGELOG.md
99
102
  - CONTRIBUTING.md
100
103
  - Gemfile
@@ -150,6 +153,7 @@ files:
150
153
  - lib/dnsimple/struct/domain.rb
151
154
  - lib/dnsimple/struct/domain_check.rb
152
155
  - lib/dnsimple/struct/domain_premium_price.rb
156
+ - lib/dnsimple/struct/domain_price.rb
153
157
  - lib/dnsimple/struct/domain_push.rb
154
158
  - lib/dnsimple/struct/domain_registration.rb
155
159
  - lib/dnsimple/struct/domain_renewal.rb
@@ -218,6 +222,9 @@ files:
218
222
  - spec/fixtures.http/changeDomainDelegationFromVanity/success.http
219
223
  - spec/fixtures.http/changeDomainDelegationToVanity/success.http
220
224
  - spec/fixtures.http/checkDomain/success.http
225
+ - spec/fixtures.http/checkDomainPremiumPrice/error_400_not_a_premium_domain.http
226
+ - spec/fixtures.http/checkDomainPremiumPrice/error_400_tld_not_supported.http
227
+ - spec/fixtures.http/checkDomainPremiumPrice/success.http
221
228
  - spec/fixtures.http/checkZoneDistribution/error.http
222
229
  - spec/fixtures.http/checkZoneDistribution/failure.http
223
230
  - spec/fixtures.http/checkZoneDistribution/success.http
@@ -229,11 +236,14 @@ files:
229
236
  - spec/fixtures.http/createDelegationSignerRecord/validation-error.http
230
237
  - spec/fixtures.http/createDomain/created.http
231
238
  - spec/fixtures.http/createEmailForward/created.http
239
+ - spec/fixtures.http/createPrimaryServer/created.http
240
+ - spec/fixtures.http/createSecondaryZone/created.http
232
241
  - spec/fixtures.http/createTemplate/created.http
233
242
  - spec/fixtures.http/createTemplateRecord/created.http
234
243
  - spec/fixtures.http/createWebhook/created.http
235
244
  - spec/fixtures.http/createZoneRecord/created-apex.http
236
245
  - spec/fixtures.http/createZoneRecord/created.http
246
+ - spec/fixtures.http/deleteContact/error-contact-in-use.http
237
247
  - spec/fixtures.http/deleteContact/success.http
238
248
  - spec/fixtures.http/deleteDelegationSignerRecord/success.http
239
249
  - spec/fixtures.http/deleteDomain/success.http
@@ -263,8 +273,11 @@ files:
263
273
  - spec/fixtures.http/getDomainDelegation/success.http
264
274
  - spec/fixtures.http/getDomainPremiumPrice/failure.http
265
275
  - spec/fixtures.http/getDomainPremiumPrice/success.http
276
+ - spec/fixtures.http/getDomainPrices/failure.http
277
+ - spec/fixtures.http/getDomainPrices/success.http
266
278
  - spec/fixtures.http/getDomainTransfer/success.http
267
279
  - spec/fixtures.http/getEmailForward/success.http
280
+ - spec/fixtures.http/getPrimaryServer/success.http
268
281
  - spec/fixtures.http/getService/success.http
269
282
  - spec/fixtures.http/getTemplate/success.http
270
283
  - spec/fixtures.http/getTemplateRecord/success.http
@@ -280,6 +293,7 @@ files:
280
293
  - spec/fixtures.http/initiatePush/success.http
281
294
  - spec/fixtures.http/issueLetsencryptCertificate/success.http
282
295
  - spec/fixtures.http/issueRenewalLetsencryptCertificate/success.http
296
+ - spec/fixtures.http/linkPrimaryServer/success.http
283
297
  - spec/fixtures.http/listAccounts/success-account.http
284
298
  - spec/fixtures.http/listAccounts/success-user.http
285
299
  - spec/fixtures.http/listCertificates/success.http
@@ -288,6 +302,7 @@ files:
288
302
  - spec/fixtures.http/listDelegationSignerRecords/success.http
289
303
  - spec/fixtures.http/listDomains/success.http
290
304
  - spec/fixtures.http/listEmailForwards/success.http
305
+ - spec/fixtures.http/listPrimaryServers/success.http
291
306
  - spec/fixtures.http/listPushes/success.http
292
307
  - spec/fixtures.http/listServices/success.http
293
308
  - spec/fixtures.http/listTemplateRecords/success.http
@@ -324,13 +339,13 @@ files:
324
339
  - spec/fixtures.http/renewWhoisPrivacy/success.http
325
340
  - spec/fixtures.http/renewWhoisPrivacy/whois-privacy-duplicated-order.http
326
341
  - spec/fixtures.http/renewWhoisPrivacy/whois-privacy-not-found.http
327
- - spec/fixtures.http/resetDomainToken/success.http
328
342
  - spec/fixtures.http/response.http
329
343
  - spec/fixtures.http/success-with-malformed-json.http
330
344
  - spec/fixtures.http/transferDomain/error-indnsimple.http
331
345
  - spec/fixtures.http/transferDomain/error-missing-authcode.http
332
346
  - spec/fixtures.http/transferDomain/success.http
333
347
  - spec/fixtures.http/unapplyService/success.http
348
+ - spec/fixtures.http/unlinkPrimaryServer/success.http
334
349
  - spec/fixtures.http/updateContact/success.http
335
350
  - spec/fixtures.http/updateTemplate/success.http
336
351
  - spec/fixtures.http/updateZoneRecord/success.http
@@ -352,184 +367,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
352
367
  requirements:
353
368
  - - ">="
354
369
  - !ruby/object:Gem::Version
355
- version: '2.4'
370
+ version: '2.6'
356
371
  required_rubygems_version: !ruby/object:Gem::Requirement
357
372
  requirements:
358
373
  - - ">="
359
374
  - !ruby/object:Gem::Version
360
375
  version: '0'
361
376
  requirements: []
362
- rubygems_version: 3.1.2
377
+ rubygems_version: 3.3.3
363
378
  signing_key:
364
379
  specification_version: 4
365
380
  summary: The DNSimple API client for Ruby
366
- test_files:
367
- - spec/dnsimple/client/accounts_spec.rb
368
- - spec/dnsimple/client/certificates_spec.rb
369
- - spec/dnsimple/client/client_service_spec.rb
370
- - spec/dnsimple/client/contacts_spec.rb
371
- - spec/dnsimple/client/domains_collaborators_spec.rb
372
- - spec/dnsimple/client/domains_delegation_signer_records_spec.rb
373
- - spec/dnsimple/client/domains_dnssec_spec.rb
374
- - spec/dnsimple/client/domains_email_forwards_spec.rb
375
- - spec/dnsimple/client/domains_pushes_spec.rb
376
- - spec/dnsimple/client/domains_spec.rb
377
- - spec/dnsimple/client/identity_spec.rb
378
- - spec/dnsimple/client/oauth_spec.rb
379
- - spec/dnsimple/client/registrar_auto_renewal_spec.rb
380
- - spec/dnsimple/client/registrar_delegation_spec.rb
381
- - spec/dnsimple/client/registrar_spec.rb
382
- - spec/dnsimple/client/registrar_whois_privacy_spec.rb
383
- - spec/dnsimple/client/services_domains_spec.rb
384
- - spec/dnsimple/client/services_spec.rb
385
- - spec/dnsimple/client/templates_domains_spec.rb
386
- - spec/dnsimple/client/templates_records_spec.rb
387
- - spec/dnsimple/client/templates_spec.rb
388
- - spec/dnsimple/client/tlds_spec.rb
389
- - spec/dnsimple/client/vanity_name_servers_spec.rb
390
- - spec/dnsimple/client/webhooks_spec.rb
391
- - spec/dnsimple/client/zones_distributions_spec.rb
392
- - spec/dnsimple/client/zones_records_spec.rb
393
- - spec/dnsimple/client/zones_spec.rb
394
- - spec/dnsimple/client_spec.rb
395
- - spec/dnsimple/extra_spec.rb
396
- - spec/dnsimple/options/base_spec.rb
397
- - spec/dnsimple/options/list_options_spec.rb
398
- - spec/fixtures.http/acceptPush/success.http
399
- - spec/fixtures.http/accounts/success-account.http
400
- - spec/fixtures.http/accounts/success-user.http
401
- - spec/fixtures.http/addCollaborator/invite-success.http
402
- - spec/fixtures.http/addCollaborator/success.http
403
- - spec/fixtures.http/appliedServices/success.http
404
- - spec/fixtures.http/applyService/success.http
405
- - spec/fixtures.http/applyTemplate/success.http
406
- - spec/fixtures.http/authorizeDomainTransferOut/success.http
407
- - spec/fixtures.http/badgateway.http
408
- - spec/fixtures.http/cancelDomainTransfer/success.http
409
- - spec/fixtures.http/changeDomainDelegation/success.http
410
- - spec/fixtures.http/changeDomainDelegationFromVanity/success.http
411
- - spec/fixtures.http/changeDomainDelegationToVanity/success.http
412
- - spec/fixtures.http/checkDomain/success.http
413
- - spec/fixtures.http/checkZoneDistribution/error.http
414
- - spec/fixtures.http/checkZoneDistribution/failure.http
415
- - spec/fixtures.http/checkZoneDistribution/success.http
416
- - spec/fixtures.http/checkZoneRecordDistribution/error.http
417
- - spec/fixtures.http/checkZoneRecordDistribution/failure.http
418
- - spec/fixtures.http/checkZoneRecordDistribution/success.http
419
- - spec/fixtures.http/createContact/created.http
420
- - spec/fixtures.http/createDelegationSignerRecord/created.http
421
- - spec/fixtures.http/createDelegationSignerRecord/validation-error.http
422
- - spec/fixtures.http/createDomain/created.http
423
- - spec/fixtures.http/createEmailForward/created.http
424
- - spec/fixtures.http/createTemplate/created.http
425
- - spec/fixtures.http/createTemplateRecord/created.http
426
- - spec/fixtures.http/createWebhook/created.http
427
- - spec/fixtures.http/createZoneRecord/created-apex.http
428
- - spec/fixtures.http/createZoneRecord/created.http
429
- - spec/fixtures.http/deleteContact/success.http
430
- - spec/fixtures.http/deleteDelegationSignerRecord/success.http
431
- - spec/fixtures.http/deleteDomain/success.http
432
- - spec/fixtures.http/deleteEmailForward/success.http
433
- - spec/fixtures.http/deleteTemplate/success.http
434
- - spec/fixtures.http/deleteTemplateRecord/success.http
435
- - spec/fixtures.http/deleteWebhook/success.http
436
- - spec/fixtures.http/deleteZoneRecord/success.http
437
- - spec/fixtures.http/disableDnssec/not-enabled.http
438
- - spec/fixtures.http/disableDnssec/success.http
439
- - spec/fixtures.http/disableDomainAutoRenewal/success.http
440
- - spec/fixtures.http/disableVanityNameServers/success.http
441
- - spec/fixtures.http/disableWhoisPrivacy/success.http
442
- - spec/fixtures.http/downloadCertificate/success.http
443
- - spec/fixtures.http/enableDnssec/success.http
444
- - spec/fixtures.http/enableDomainAutoRenewal/success.http
445
- - spec/fixtures.http/enableVanityNameServers/success.http
446
- - spec/fixtures.http/enableWhoisPrivacy/created.http
447
- - spec/fixtures.http/enableWhoisPrivacy/success.http
448
- - spec/fixtures.http/getCertificate/success.http
449
- - spec/fixtures.http/getCertificatePrivateKey/success.http
450
- - spec/fixtures.http/getContact/success.http
451
- - spec/fixtures.http/getDelegationSignerRecord/success.http
452
- - spec/fixtures.http/getDnssec/success.http
453
- - spec/fixtures.http/getDomain/success.http
454
- - spec/fixtures.http/getDomainDelegation/success-empty.http
455
- - spec/fixtures.http/getDomainDelegation/success.http
456
- - spec/fixtures.http/getDomainPremiumPrice/failure.http
457
- - spec/fixtures.http/getDomainPremiumPrice/success.http
458
- - spec/fixtures.http/getDomainTransfer/success.http
459
- - spec/fixtures.http/getEmailForward/success.http
460
- - spec/fixtures.http/getService/success.http
461
- - spec/fixtures.http/getTemplate/success.http
462
- - spec/fixtures.http/getTemplateRecord/success.http
463
- - spec/fixtures.http/getTld/success.http
464
- - spec/fixtures.http/getTldExtendedAttributes/success-attributes.http
465
- - spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http
466
- - spec/fixtures.http/getTldExtendedAttributes/success.http
467
- - spec/fixtures.http/getWebhook/success.http
468
- - spec/fixtures.http/getWhoisPrivacy/success.http
469
- - spec/fixtures.http/getZone/success.http
470
- - spec/fixtures.http/getZoneFile/success.http
471
- - spec/fixtures.http/getZoneRecord/success.http
472
- - spec/fixtures.http/initiatePush/success.http
473
- - spec/fixtures.http/issueLetsencryptCertificate/success.http
474
- - spec/fixtures.http/issueRenewalLetsencryptCertificate/success.http
475
- - spec/fixtures.http/listAccounts/success-account.http
476
- - spec/fixtures.http/listAccounts/success-user.http
477
- - spec/fixtures.http/listCertificates/success.http
478
- - spec/fixtures.http/listCollaborators/success.http
479
- - spec/fixtures.http/listContacts/success.http
480
- - spec/fixtures.http/listDelegationSignerRecords/success.http
481
- - spec/fixtures.http/listDomains/success.http
482
- - spec/fixtures.http/listEmailForwards/success.http
483
- - spec/fixtures.http/listPushes/success.http
484
- - spec/fixtures.http/listServices/success.http
485
- - spec/fixtures.http/listTemplateRecords/success.http
486
- - spec/fixtures.http/listTemplates/success.http
487
- - spec/fixtures.http/listTlds/success.http
488
- - spec/fixtures.http/listWebhooks/success.http
489
- - spec/fixtures.http/listZoneRecords/success.http
490
- - spec/fixtures.http/listZones/success.http
491
- - spec/fixtures.http/method-not-allowed.http
492
- - spec/fixtures.http/notfound-certificate.http
493
- - spec/fixtures.http/notfound-collaborator.http
494
- - spec/fixtures.http/notfound-contact.http
495
- - spec/fixtures.http/notfound-delegationsignerrecord.http
496
- - spec/fixtures.http/notfound-domain.http
497
- - spec/fixtures.http/notfound-domainpush.http
498
- - spec/fixtures.http/notfound-emailforward.http
499
- - spec/fixtures.http/notfound-record.http
500
- - spec/fixtures.http/notfound-template.http
501
- - spec/fixtures.http/notfound-webhook.http
502
- - spec/fixtures.http/notfound-whoisprivacy.http
503
- - spec/fixtures.http/notfound-zone.http
504
- - spec/fixtures.http/oauthAccessToken/error-invalid-request.http
505
- - spec/fixtures.http/oauthAccessToken/success.http
506
- - spec/fixtures.http/pages-1of3.http
507
- - spec/fixtures.http/pages-2of3.http
508
- - spec/fixtures.http/pages-3of3.http
509
- - spec/fixtures.http/purchaseLetsencryptCertificate/success.http
510
- - spec/fixtures.http/purchaseRenewalLetsencryptCertificate/success.http
511
- - spec/fixtures.http/registerDomain/success.http
512
- - spec/fixtures.http/rejectPush/success.http
513
- - spec/fixtures.http/removeCollaborator/success.http
514
- - spec/fixtures.http/renewDomain/error-tooearly.http
515
- - spec/fixtures.http/renewDomain/success.http
516
- - spec/fixtures.http/renewWhoisPrivacy/success.http
517
- - spec/fixtures.http/renewWhoisPrivacy/whois-privacy-duplicated-order.http
518
- - spec/fixtures.http/renewWhoisPrivacy/whois-privacy-not-found.http
519
- - spec/fixtures.http/resetDomainToken/success.http
520
- - spec/fixtures.http/response.http
521
- - spec/fixtures.http/success-with-malformed-json.http
522
- - spec/fixtures.http/transferDomain/error-indnsimple.http
523
- - spec/fixtures.http/transferDomain/error-missing-authcode.http
524
- - spec/fixtures.http/transferDomain/success.http
525
- - spec/fixtures.http/unapplyService/success.http
526
- - spec/fixtures.http/updateContact/success.http
527
- - spec/fixtures.http/updateTemplate/success.http
528
- - spec/fixtures.http/updateZoneRecord/success.http
529
- - spec/fixtures.http/validation-error.http
530
- - spec/fixtures.http/whoami/success-account.http
531
- - spec/fixtures.http/whoami/success-user.http
532
- - spec/fixtures.http/whoami/success.http
533
- - spec/spec_helper.rb
534
- - spec/support/helpers.rb
535
- - spec/support/webmock.rb
381
+ test_files: []
@@ -1,9 +0,0 @@
1
- version: 1
2
- update_configs:
3
- - package_manager: "ruby:bundler"
4
- directory: "/"
5
- update_schedule: "daily"
6
- default_labels:
7
- - "task"
8
- - "dependencies"
9
- - "backlog-dependencies"
data/.travis.yml DELETED
@@ -1,17 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - 2.4
5
- - 2.5
6
- - 2.6
7
- - 2.7
8
-
9
- env:
10
- - COVERALL=1
11
-
12
- before_install:
13
- - gem install bundler -v 1.17.3
14
-
15
- notifications:
16
- slack:
17
- secure: "N9zPR5jnF1TBiqvb3mCV6Wem3TIvqu4tXiob2P66vBMwmj1ewWvyUzNLwAEOCDc3mRfsI50IYXHewckAUpCWW7XEJlT/pv8llMsoiHqArb7SGJyDdy3ZRr35L7glixs/ikod+xhRKXMM3jML/2MgSa+Culzhl42tMUFDk+bBBQU="
@@ -1,17 +0,0 @@
1
- HTTP/1.1 201 Created
2
- Server: nginx
3
- Date: Thu, 04 Feb 2016 10:13:19 GMT
4
- Content-Type: application/json; charset=utf-8
5
- Transfer-Encoding: chunked
6
- Connection: keep-alive
7
- Status: 201 Created
8
- X-RateLimit-Limit: 4000
9
- X-RateLimit-Remaining: 3999
10
- X-RateLimit-Reset: 1454584399
11
- ETag: W/"834381fd3fd0896e344e3fad9e77ab97"
12
- Cache-Control: max-age=0, private, must-revalidate
13
- X-Request-Id: bf1b3976-2edd-4ea6-b606-1d60eaa0403d
14
- X-Runtime: 0.075404
15
- Strict-Transport-Security: max-age=31536000
16
-
17
- {"data":{"id":1,"account_id":1010,"registrant_id":null,"name":"example-alpha.com","unicode_name":"example-alpha.com","token":"domain-token","state":"hosted","auto_renew":false,"private_whois":false,"expires_on":null,"created_at":"2014-12-06T15:56:55Z","updated_at":"2015-12-09T00:20:56Z"}}