dnsimple 2.2.0 → 3.0.0.pre.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/.travis.yml +3 -1
- data/CHANGELOG.md +13 -2
- data/CONTRIBUTING.md +35 -0
- data/Gemfile +2 -0
- data/LICENSE.txt +1 -1
- data/README.md +30 -82
- data/dnsimple.gemspec +2 -1
- data/lib/dnsimple.rb +0 -2
- data/lib/dnsimple/client.rb +64 -64
- data/lib/dnsimple/client/clients.rb +82 -58
- data/lib/dnsimple/client/contacts.rb +74 -37
- data/lib/dnsimple/client/domains.rb +82 -28
- data/lib/dnsimple/client/domains_email_forwards.rb +107 -0
- data/lib/dnsimple/client/identity.rb +38 -0
- data/lib/dnsimple/client/oauth.rb +42 -0
- data/lib/dnsimple/client/registrar.rb +64 -72
- data/lib/dnsimple/client/registrar_auto_renewal.rb +41 -0
- data/lib/dnsimple/client/registrar_whois_privacy.rb +74 -0
- data/lib/dnsimple/client/tlds.rb +88 -0
- data/lib/dnsimple/client/webhooks.rb +82 -0
- data/lib/dnsimple/client/zones.rb +68 -0
- data/lib/dnsimple/client/zones_records.rb +127 -0
- data/lib/dnsimple/default.rb +10 -17
- data/lib/dnsimple/error.rb +5 -8
- data/lib/dnsimple/extra.rb +1 -1
- data/lib/dnsimple/response.rb +80 -0
- data/lib/dnsimple/struct.rb +13 -14
- data/lib/dnsimple/struct/account.rb +13 -0
- data/lib/dnsimple/struct/contact.rb +6 -3
- data/lib/dnsimple/struct/domain.rb +10 -10
- data/lib/dnsimple/struct/domain_check.rb +16 -0
- data/lib/dnsimple/struct/email_forward.rb +11 -1
- data/lib/dnsimple/struct/oauth_token.rb +19 -0
- data/lib/dnsimple/struct/record.rb +25 -7
- data/lib/dnsimple/struct/tld.rb +22 -0
- data/lib/dnsimple/struct/user.rb +3 -7
- data/lib/dnsimple/struct/webhook.rb +13 -0
- data/lib/dnsimple/struct/whois_privacy.rb +8 -5
- data/lib/dnsimple/struct/zone.rb +25 -0
- data/lib/dnsimple/version.rb +1 -1
- data/spec/dnsimple/client/client_service_spec.rb +37 -0
- data/spec/dnsimple/client/contacts_spec.rb +108 -78
- data/spec/dnsimple/client/domains_email_forwards_spec.rb +190 -0
- data/spec/dnsimple/client/domains_spec.rb +121 -58
- data/spec/dnsimple/client/identity_spec.rb +56 -0
- data/spec/dnsimple/client/oauth_spec.rb +48 -0
- data/spec/dnsimple/client/registrar_auto_renewal_spec.rb +80 -0
- data/spec/dnsimple/client/registrar_spec.rb +109 -122
- data/spec/dnsimple/client/registrar_whois_privacy_spec.rb +119 -0
- data/spec/dnsimple/client/tlds_spec.rb +139 -0
- data/spec/dnsimple/client/webhooks_spec.rb +142 -0
- data/spec/dnsimple/client/zones_records_spec.rb +277 -0
- data/spec/dnsimple/client/zones_spec.rb +109 -0
- data/spec/dnsimple/client_spec.rb +34 -46
- data/spec/dnsimple/extra_spec.rb +22 -0
- data/spec/{files → fixtures.http}/badgateway.http +14 -14
- data/spec/fixtures.http/checkDomain/success.http +17 -0
- data/spec/fixtures.http/createContact/created.http +17 -0
- data/spec/fixtures.http/createDomain/created.http +16 -0
- data/spec/fixtures.http/createEmailForward/created.http +17 -0
- data/spec/fixtures.http/createWebhook/created.http +17 -0
- data/spec/fixtures.http/createZoneRecord/created.http +17 -0
- data/spec/fixtures.http/deleteContact/success.http +13 -0
- data/spec/fixtures.http/deleteDomain/success.http +13 -0
- data/spec/fixtures.http/deleteEmailForward/success.http +12 -0
- data/spec/fixtures.http/deleteWebhook/success.http +13 -0
- data/spec/fixtures.http/deleteZoneRecord/success.http +13 -0
- data/spec/fixtures.http/disableAutoRenewal/success.http +12 -0
- data/spec/fixtures.http/disableWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/enableAutoRenewal/success.http +12 -0
- data/spec/fixtures.http/enableWhoisPrivacy/created.http +17 -0
- data/spec/fixtures.http/enableWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/getContact/success.http +17 -0
- data/spec/fixtures.http/getDomain/success.http +16 -0
- data/spec/fixtures.http/getEmailForward/success.http +17 -0
- data/spec/fixtures.http/getTld/success.http +17 -0
- data/spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http +17 -0
- data/spec/fixtures.http/getTldExtendedAttributes/success.http +17 -0
- data/spec/fixtures.http/getWebhook/success.http +17 -0
- data/spec/fixtures.http/getWhoisPrivacy/success.http +17 -0
- data/spec/fixtures.http/getZone/success.http +17 -0
- data/spec/fixtures.http/getZoneRecord/success.http +17 -0
- data/spec/fixtures.http/listContacts/success.http +17 -0
- data/spec/fixtures.http/listDomains/success.http +16 -0
- data/spec/fixtures.http/listEmailForwards/success.http +17 -0
- data/spec/fixtures.http/listTlds/success.http +17 -0
- data/spec/fixtures.http/listWebhooks/success.http +17 -0
- data/spec/fixtures.http/listZoneRecords/success.http +17 -0
- data/spec/fixtures.http/listZones/success.http +17 -0
- data/spec/fixtures.http/notfound-contact.http +12 -0
- data/spec/fixtures.http/notfound-domain.http +12 -0
- data/spec/fixtures.http/notfound-emailforward.http +12 -0
- data/spec/fixtures.http/notfound-record.http +12 -0
- data/spec/fixtures.http/notfound-webhook.http +12 -0
- data/spec/fixtures.http/notfound-zone.http +12 -0
- data/spec/fixtures.http/oauthAccessToken/success.http +17 -0
- data/spec/fixtures.http/pages-1of3.http +16 -0
- data/spec/fixtures.http/pages-2of3.http +16 -0
- data/spec/fixtures.http/pages-3of3.http +16 -0
- data/spec/fixtures.http/registerDomain/success.http +17 -0
- data/spec/fixtures.http/renewDomain/error-tooearly.http +15 -0
- data/spec/fixtures.http/renewDomain/success.http +17 -0
- data/spec/fixtures.http/resetDomainToken/success.http +17 -0
- data/spec/fixtures.http/response.http +16 -0
- data/spec/fixtures.http/transferDomain/error-indnsimple.http +15 -0
- data/spec/fixtures.http/transferDomain/error-missing-authcode.http +15 -0
- data/spec/fixtures.http/transferDomain/success.http +17 -0
- data/spec/fixtures.http/transferDomainOut/success.http +13 -0
- data/spec/fixtures.http/updateContact/success.http +17 -0
- data/spec/fixtures.http/updateZoneRecord/success.http +17 -0
- data/spec/fixtures.http/whoami/success.http +16 -0
- data/spec/fixtures.http/whoami/success_account.http +16 -0
- data/spec/fixtures.http/whoami/success_user.http +16 -0
- data/spec/spec_helper.rb +0 -6
- data/spec/support/helpers.rb +4 -4
- metadata +161 -238
- data/lib/dnsimple/client/certificates.rb +0 -100
- data/lib/dnsimple/client/domains_autorenewal.rb +0 -35
- data/lib/dnsimple/client/domains_forwards.rb +0 -71
- data/lib/dnsimple/client/domains_privacy.rb +0 -35
- data/lib/dnsimple/client/domains_records.rb +0 -90
- data/lib/dnsimple/client/domains_sharing.rb +0 -54
- data/lib/dnsimple/client/domains_zones.rb +0 -22
- data/lib/dnsimple/client/name_servers.rb +0 -71
- data/lib/dnsimple/client/services.rb +0 -37
- data/lib/dnsimple/client/services_domains.rb +0 -68
- data/lib/dnsimple/client/templates.rb +0 -88
- data/lib/dnsimple/client/templates_domains.rb +0 -23
- data/lib/dnsimple/client/templates_records.rb +0 -88
- data/lib/dnsimple/client/users.rb +0 -39
- data/lib/dnsimple/client/vanity_name_servers.rb +0 -39
- data/lib/dnsimple/compatibility.rb +0 -46
- data/lib/dnsimple/struct/certificate.rb +0 -56
- data/lib/dnsimple/struct/membership.rb +0 -22
- data/lib/dnsimple/struct/price.rb +0 -16
- data/lib/dnsimple/struct/service.rb +0 -19
- data/lib/dnsimple/struct/template.rb +0 -19
- data/lib/dnsimple/struct/template_record.rb +0 -24
- data/lib/dnsimple/struct/transfer_order.rb +0 -10
- data/spec/dnsimple/client/certificates_spec.rb +0 -196
- data/spec/dnsimple/client/domains_autorenewals_spec.rb +0 -72
- data/spec/dnsimple/client/domains_forwards_spec.rb +0 -146
- data/spec/dnsimple/client/domains_privacy_spec.rb +0 -74
- data/spec/dnsimple/client/domains_records_spec.rb +0 -191
- data/spec/dnsimple/client/domains_sharing_spec.rb +0 -109
- data/spec/dnsimple/client/domains_zones_spec.rb +0 -40
- data/spec/dnsimple/client/name_servers_spec.rb +0 -131
- data/spec/dnsimple/client/services_domains_spec.rb +0 -101
- data/spec/dnsimple/client/services_spec.rb +0 -69
- data/spec/dnsimple/client/templates_domains_spec.rb +0 -38
- data/spec/dnsimple/client/templates_records_spec.rb +0 -180
- data/spec/dnsimple/client/templates_spec.rb +0 -166
- data/spec/dnsimple/client/users_spec.rb +0 -70
- data/spec/dnsimple/client/vanity_name_servers_spec.rb +0 -61
- data/spec/dnsimple/compatibility_spec.rb +0 -57
- data/spec/files/2fa/error-badtoken.http +0 -22
- data/spec/files/2fa/error-required.http +0 -23
- data/spec/files/2fa/exchange-token.http +0 -22
- data/spec/files/certificates/configure/success.http +0 -19
- data/spec/files/certificates/get/success.http +0 -19
- data/spec/files/certificates/list/success.http +0 -19
- data/spec/files/certificates/notfound.http +0 -19
- data/spec/files/certificates/purchase/success.http +0 -19
- data/spec/files/certificates/submit/success.http +0 -19
- data/spec/files/contacts/contact/success.http +0 -19
- data/spec/files/contacts/contacts/success.http +0 -23
- data/spec/files/contacts/create_contact/badrequest-missingcontact.http +0 -19
- data/spec/files/contacts/create_contact/badrequest-validationerror.http +0 -19
- data/spec/files/contacts/create_contact/created.http +0 -22
- data/spec/files/contacts/delete_contact/success-204.http +0 -18
- data/spec/files/contacts/delete_contact/success.http +0 -19
- data/spec/files/contacts/notfound-contact.http +0 -19
- data/spec/files/contacts/update_contact/success.http +0 -21
- data/spec/files/domains/create_domain/created.http +0 -21
- data/spec/files/domains/create_forward/created.http +0 -22
- data/spec/files/domains/create_membership/success.http +0 -21
- data/spec/files/domains/create_record/created.http +0 -21
- data/spec/files/domains/delete_domain/success-204.http +0 -18
- data/spec/files/domains/delete_domain/success.http +0 -19
- data/spec/files/domains/delete_forward/success.http +0 -17
- data/spec/files/domains/delete_membership/success.http +0 -17
- data/spec/files/domains/delete_record/success-204.http +0 -18
- data/spec/files/domains/delete_record/success.http +0 -19
- data/spec/files/domains/disable_auto_renewal/success.http +0 -21
- data/spec/files/domains/disable_whois_privacy/success.http +0 -21
- data/spec/files/domains/domain/success.http +0 -21
- data/spec/files/domains/domains/success.http +0 -21
- data/spec/files/domains/enable_auto_renewal/success.http +0 -21
- data/spec/files/domains/enable_whois_privacy/success.http +0 -22
- data/spec/files/domains/forward/success.http +0 -21
- data/spec/files/domains/forwards/success.http +0 -21
- data/spec/files/domains/memberships/success.http +0 -21
- data/spec/files/domains/notfound-domain.http +0 -19
- data/spec/files/domains/notfound-forward.http +0 -19
- data/spec/files/domains/notfound-membership.http +0 -19
- data/spec/files/domains/record/success.http +0 -19
- data/spec/files/domains/records/success.http +0 -19
- data/spec/files/domains/update_record/success.http +0 -21
- data/spec/files/domains/zone/success.http +0 -21
- data/spec/files/nameservers/change/success.http +0 -23
- data/spec/files/nameservers/deregister/success.http +0 -17
- data/spec/files/nameservers/name_servers/success.http +0 -23
- data/spec/files/nameservers/notfound-domain.http +0 -19
- data/spec/files/nameservers/register/badrequest-valueerror.http +0 -19
- data/spec/files/nameservers/register/success.http +0 -21
- data/spec/files/nameservers/vanity_name_servers/disabled.http +0 -23
- data/spec/files/nameservers/vanity_name_servers/enabled.http +0 -23
- data/spec/files/registrar/check/available.http +0 -19
- data/spec/files/registrar/check/registered.http +0 -21
- data/spec/files/registrar/extended_attributes/success.http +0 -21
- data/spec/files/registrar/prices/success.http +0 -21
- data/spec/files/registrar/register/badrequest-missingdomain.http +0 -19
- data/spec/files/registrar/register/badrequest-missingregistrant.http +0 -19
- data/spec/files/registrar/register/success.http +0 -21
- data/spec/files/registrar/renew/badrequest-missingrenewal.http +0 -19
- data/spec/files/registrar/renew/badrequest-unable.http +0 -19
- data/spec/files/registrar/renew/success.http +0 -21
- data/spec/files/registrar/transfer/success.http +0 -21
- data/spec/files/services/applied/success.http +0 -21
- data/spec/files/services/apply/success.http +0 -21
- data/spec/files/services/available/success.http +0 -21
- data/spec/files/services/notfound-service.http +0 -19
- data/spec/files/services/service/success.http +0 -21
- data/spec/files/services/services/success.http +0 -21
- data/spec/files/services/unapply/success.http +0 -21
- data/spec/files/subscriptions/subscription/success.http +0 -21
- data/spec/files/templates/apply_template/success.http +0 -21
- data/spec/files/templates/create_template/created.http +0 -22
- data/spec/files/templates/delete_template/success-204.http +0 -21
- data/spec/files/templates/delete_template/success.http +0 -21
- data/spec/files/templates/notfound-template.http +0 -19
- data/spec/files/templates/template/success.http +0 -21
- data/spec/files/templates/templates/success.http +0 -21
- data/spec/files/templates/update_template/success.http +0 -21
- data/spec/files/templates_records/create_record/created.http +0 -22
- data/spec/files/templates_records/delete_record/success-204.http +0 -19
- data/spec/files/templates_records/delete_record/success.http +0 -21
- data/spec/files/templates_records/notfound-template-record.http +0 -19
- data/spec/files/templates_records/record/success.http +0 -21
- data/spec/files/templates_records/records/success.http +0 -21
- data/spec/files/templates_records/update_record/success.http +0 -21
- data/spec/files/users/user/success.http +0 -21
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:
|
4
|
+
version: 3.0.0.pre.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anthony Eden
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-03-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: httparty
|
@@ -87,7 +87,8 @@ email:
|
|
87
87
|
- simone.carletti@dnsimple.com
|
88
88
|
executables: []
|
89
89
|
extensions: []
|
90
|
-
extra_rdoc_files:
|
90
|
+
extra_rdoc_files:
|
91
|
+
- LICENSE.txt
|
91
92
|
files:
|
92
93
|
- ".gitignore"
|
93
94
|
- ".rspec"
|
@@ -95,6 +96,7 @@ files:
|
|
95
96
|
- ".ruby-version"
|
96
97
|
- ".travis.yml"
|
97
98
|
- CHANGELOG.md
|
99
|
+
- CONTRIBUTING.md
|
98
100
|
- Gemfile
|
99
101
|
- LICENSE.txt
|
100
102
|
- README.md
|
@@ -103,154 +105,111 @@ files:
|
|
103
105
|
- dnsimple.gemspec
|
104
106
|
- lib/dnsimple.rb
|
105
107
|
- lib/dnsimple/client.rb
|
106
|
-
- lib/dnsimple/client/certificates.rb
|
107
108
|
- lib/dnsimple/client/clients.rb
|
108
109
|
- lib/dnsimple/client/contacts.rb
|
109
110
|
- lib/dnsimple/client/domains.rb
|
110
|
-
- lib/dnsimple/client/
|
111
|
-
- lib/dnsimple/client/
|
112
|
-
- lib/dnsimple/client/
|
113
|
-
- lib/dnsimple/client/domains_records.rb
|
114
|
-
- lib/dnsimple/client/domains_sharing.rb
|
115
|
-
- lib/dnsimple/client/domains_zones.rb
|
116
|
-
- lib/dnsimple/client/name_servers.rb
|
111
|
+
- lib/dnsimple/client/domains_email_forwards.rb
|
112
|
+
- lib/dnsimple/client/identity.rb
|
113
|
+
- lib/dnsimple/client/oauth.rb
|
117
114
|
- lib/dnsimple/client/registrar.rb
|
118
|
-
- lib/dnsimple/client/
|
119
|
-
- lib/dnsimple/client/
|
120
|
-
- lib/dnsimple/client/
|
121
|
-
- lib/dnsimple/client/
|
122
|
-
- lib/dnsimple/client/
|
123
|
-
- lib/dnsimple/client/
|
124
|
-
- lib/dnsimple/client/vanity_name_servers.rb
|
125
|
-
- lib/dnsimple/compatibility.rb
|
115
|
+
- lib/dnsimple/client/registrar_auto_renewal.rb
|
116
|
+
- lib/dnsimple/client/registrar_whois_privacy.rb
|
117
|
+
- lib/dnsimple/client/tlds.rb
|
118
|
+
- lib/dnsimple/client/webhooks.rb
|
119
|
+
- lib/dnsimple/client/zones.rb
|
120
|
+
- lib/dnsimple/client/zones_records.rb
|
126
121
|
- lib/dnsimple/default.rb
|
127
122
|
- lib/dnsimple/error.rb
|
128
123
|
- lib/dnsimple/extra.rb
|
124
|
+
- lib/dnsimple/response.rb
|
129
125
|
- lib/dnsimple/struct.rb
|
130
|
-
- lib/dnsimple/struct/
|
126
|
+
- lib/dnsimple/struct/account.rb
|
131
127
|
- lib/dnsimple/struct/contact.rb
|
132
128
|
- lib/dnsimple/struct/domain.rb
|
129
|
+
- lib/dnsimple/struct/domain_check.rb
|
133
130
|
- lib/dnsimple/struct/email_forward.rb
|
134
131
|
- lib/dnsimple/struct/extended_attribute.rb
|
135
|
-
- lib/dnsimple/struct/
|
136
|
-
- lib/dnsimple/struct/price.rb
|
132
|
+
- lib/dnsimple/struct/oauth_token.rb
|
137
133
|
- lib/dnsimple/struct/record.rb
|
138
|
-
- lib/dnsimple/struct/
|
139
|
-
- lib/dnsimple/struct/template.rb
|
140
|
-
- lib/dnsimple/struct/template_record.rb
|
141
|
-
- lib/dnsimple/struct/transfer_order.rb
|
134
|
+
- lib/dnsimple/struct/tld.rb
|
142
135
|
- lib/dnsimple/struct/user.rb
|
136
|
+
- lib/dnsimple/struct/webhook.rb
|
143
137
|
- lib/dnsimple/struct/whois_privacy.rb
|
138
|
+
- lib/dnsimple/struct/zone.rb
|
144
139
|
- lib/dnsimple/version.rb
|
145
|
-
- spec/dnsimple/client/
|
140
|
+
- spec/dnsimple/client/client_service_spec.rb
|
146
141
|
- spec/dnsimple/client/contacts_spec.rb
|
147
|
-
- spec/dnsimple/client/
|
148
|
-
- spec/dnsimple/client/domains_forwards_spec.rb
|
149
|
-
- spec/dnsimple/client/domains_privacy_spec.rb
|
150
|
-
- spec/dnsimple/client/domains_records_spec.rb
|
151
|
-
- spec/dnsimple/client/domains_sharing_spec.rb
|
142
|
+
- spec/dnsimple/client/domains_email_forwards_spec.rb
|
152
143
|
- spec/dnsimple/client/domains_spec.rb
|
153
|
-
- spec/dnsimple/client/
|
154
|
-
- spec/dnsimple/client/
|
144
|
+
- spec/dnsimple/client/identity_spec.rb
|
145
|
+
- spec/dnsimple/client/oauth_spec.rb
|
146
|
+
- spec/dnsimple/client/registrar_auto_renewal_spec.rb
|
155
147
|
- spec/dnsimple/client/registrar_spec.rb
|
156
|
-
- spec/dnsimple/client/
|
157
|
-
- spec/dnsimple/client/
|
158
|
-
- spec/dnsimple/client/
|
159
|
-
- spec/dnsimple/client/
|
160
|
-
- spec/dnsimple/client/
|
161
|
-
- spec/dnsimple/client/users_spec.rb
|
162
|
-
- spec/dnsimple/client/vanity_name_servers_spec.rb
|
148
|
+
- spec/dnsimple/client/registrar_whois_privacy_spec.rb
|
149
|
+
- spec/dnsimple/client/tlds_spec.rb
|
150
|
+
- spec/dnsimple/client/webhooks_spec.rb
|
151
|
+
- spec/dnsimple/client/zones_records_spec.rb
|
152
|
+
- spec/dnsimple/client/zones_spec.rb
|
163
153
|
- spec/dnsimple/client_spec.rb
|
164
|
-
- spec/dnsimple/compatibility_spec.rb
|
165
154
|
- spec/dnsimple/extra_spec.rb
|
166
|
-
- spec/
|
167
|
-
- spec/
|
168
|
-
- spec/
|
169
|
-
- spec/
|
170
|
-
- spec/
|
171
|
-
- spec/
|
172
|
-
- spec/
|
173
|
-
- spec/
|
174
|
-
- spec/
|
175
|
-
- spec/
|
176
|
-
- spec/
|
177
|
-
- spec/
|
178
|
-
- spec/
|
179
|
-
- spec/
|
180
|
-
- spec/
|
181
|
-
- spec/
|
182
|
-
- spec/
|
183
|
-
- spec/
|
184
|
-
- spec/
|
185
|
-
- spec/
|
186
|
-
- spec/
|
187
|
-
- spec/
|
188
|
-
- spec/
|
189
|
-
- spec/
|
190
|
-
- spec/
|
191
|
-
- spec/
|
192
|
-
- spec/
|
193
|
-
- spec/
|
194
|
-
- spec/
|
195
|
-
- spec/
|
196
|
-
- spec/
|
197
|
-
- spec/
|
198
|
-
- spec/
|
199
|
-
- spec/
|
200
|
-
- spec/
|
201
|
-
- spec/
|
202
|
-
- spec/
|
203
|
-
- spec/
|
204
|
-
- spec/
|
205
|
-
- spec/
|
206
|
-
- spec/
|
207
|
-
- spec/
|
208
|
-
- spec/
|
209
|
-
- spec/
|
210
|
-
- spec/
|
211
|
-
- spec/
|
212
|
-
- spec/
|
213
|
-
- spec/
|
214
|
-
- spec/
|
215
|
-
- spec/
|
216
|
-
- spec/
|
217
|
-
- spec/
|
218
|
-
- spec/
|
219
|
-
- spec/
|
220
|
-
- spec/
|
221
|
-
- spec/
|
222
|
-
- spec/
|
223
|
-
- spec/
|
224
|
-
- spec/files/registrar/register/badrequest-missingregistrant.http
|
225
|
-
- spec/files/registrar/register/success.http
|
226
|
-
- spec/files/registrar/renew/badrequest-missingrenewal.http
|
227
|
-
- spec/files/registrar/renew/badrequest-unable.http
|
228
|
-
- spec/files/registrar/renew/success.http
|
229
|
-
- spec/files/registrar/transfer/success.http
|
230
|
-
- spec/files/services/applied/success.http
|
231
|
-
- spec/files/services/apply/success.http
|
232
|
-
- spec/files/services/available/success.http
|
233
|
-
- spec/files/services/notfound-service.http
|
234
|
-
- spec/files/services/service/success.http
|
235
|
-
- spec/files/services/services/success.http
|
236
|
-
- spec/files/services/unapply/success.http
|
237
|
-
- spec/files/subscriptions/subscription/success.http
|
238
|
-
- spec/files/templates/apply_template/success.http
|
239
|
-
- spec/files/templates/create_template/created.http
|
240
|
-
- spec/files/templates/delete_template/success-204.http
|
241
|
-
- spec/files/templates/delete_template/success.http
|
242
|
-
- spec/files/templates/notfound-template.http
|
243
|
-
- spec/files/templates/template/success.http
|
244
|
-
- spec/files/templates/templates/success.http
|
245
|
-
- spec/files/templates/update_template/success.http
|
246
|
-
- spec/files/templates_records/create_record/created.http
|
247
|
-
- spec/files/templates_records/delete_record/success-204.http
|
248
|
-
- spec/files/templates_records/delete_record/success.http
|
249
|
-
- spec/files/templates_records/notfound-template-record.http
|
250
|
-
- spec/files/templates_records/record/success.http
|
251
|
-
- spec/files/templates_records/records/success.http
|
252
|
-
- spec/files/templates_records/update_record/success.http
|
253
|
-
- spec/files/users/user/success.http
|
155
|
+
- spec/fixtures.http/badgateway.http
|
156
|
+
- spec/fixtures.http/checkDomain/success.http
|
157
|
+
- spec/fixtures.http/createContact/created.http
|
158
|
+
- spec/fixtures.http/createDomain/created.http
|
159
|
+
- spec/fixtures.http/createEmailForward/created.http
|
160
|
+
- spec/fixtures.http/createWebhook/created.http
|
161
|
+
- spec/fixtures.http/createZoneRecord/created.http
|
162
|
+
- spec/fixtures.http/deleteContact/success.http
|
163
|
+
- spec/fixtures.http/deleteDomain/success.http
|
164
|
+
- spec/fixtures.http/deleteEmailForward/success.http
|
165
|
+
- spec/fixtures.http/deleteWebhook/success.http
|
166
|
+
- spec/fixtures.http/deleteZoneRecord/success.http
|
167
|
+
- spec/fixtures.http/disableAutoRenewal/success.http
|
168
|
+
- spec/fixtures.http/disableWhoisPrivacy/success.http
|
169
|
+
- spec/fixtures.http/enableAutoRenewal/success.http
|
170
|
+
- spec/fixtures.http/enableWhoisPrivacy/created.http
|
171
|
+
- spec/fixtures.http/enableWhoisPrivacy/success.http
|
172
|
+
- spec/fixtures.http/getContact/success.http
|
173
|
+
- spec/fixtures.http/getDomain/success.http
|
174
|
+
- spec/fixtures.http/getEmailForward/success.http
|
175
|
+
- spec/fixtures.http/getTld/success.http
|
176
|
+
- spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http
|
177
|
+
- spec/fixtures.http/getTldExtendedAttributes/success.http
|
178
|
+
- spec/fixtures.http/getWebhook/success.http
|
179
|
+
- spec/fixtures.http/getWhoisPrivacy/success.http
|
180
|
+
- spec/fixtures.http/getZone/success.http
|
181
|
+
- spec/fixtures.http/getZoneRecord/success.http
|
182
|
+
- spec/fixtures.http/listContacts/success.http
|
183
|
+
- spec/fixtures.http/listDomains/success.http
|
184
|
+
- spec/fixtures.http/listEmailForwards/success.http
|
185
|
+
- spec/fixtures.http/listTlds/success.http
|
186
|
+
- spec/fixtures.http/listWebhooks/success.http
|
187
|
+
- spec/fixtures.http/listZoneRecords/success.http
|
188
|
+
- spec/fixtures.http/listZones/success.http
|
189
|
+
- spec/fixtures.http/notfound-contact.http
|
190
|
+
- spec/fixtures.http/notfound-domain.http
|
191
|
+
- spec/fixtures.http/notfound-emailforward.http
|
192
|
+
- spec/fixtures.http/notfound-record.http
|
193
|
+
- spec/fixtures.http/notfound-webhook.http
|
194
|
+
- spec/fixtures.http/notfound-zone.http
|
195
|
+
- spec/fixtures.http/oauthAccessToken/success.http
|
196
|
+
- spec/fixtures.http/pages-1of3.http
|
197
|
+
- spec/fixtures.http/pages-2of3.http
|
198
|
+
- spec/fixtures.http/pages-3of3.http
|
199
|
+
- spec/fixtures.http/registerDomain/success.http
|
200
|
+
- spec/fixtures.http/renewDomain/error-tooearly.http
|
201
|
+
- spec/fixtures.http/renewDomain/success.http
|
202
|
+
- spec/fixtures.http/resetDomainToken/success.http
|
203
|
+
- spec/fixtures.http/response.http
|
204
|
+
- spec/fixtures.http/transferDomain/error-indnsimple.http
|
205
|
+
- spec/fixtures.http/transferDomain/error-missing-authcode.http
|
206
|
+
- spec/fixtures.http/transferDomain/success.http
|
207
|
+
- spec/fixtures.http/transferDomainOut/success.http
|
208
|
+
- spec/fixtures.http/updateContact/success.http
|
209
|
+
- spec/fixtures.http/updateZoneRecord/success.http
|
210
|
+
- spec/fixtures.http/whoami/success.http
|
211
|
+
- spec/fixtures.http/whoami/success_account.http
|
212
|
+
- spec/fixtures.http/whoami/success_user.http
|
254
213
|
- spec/spec_helper.rb
|
255
214
|
- spec/support/helpers.rb
|
256
215
|
- spec/support/webmock.rb
|
@@ -265,128 +224,92 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
265
224
|
requirements:
|
266
225
|
- - ">="
|
267
226
|
- !ruby/object:Gem::Version
|
268
|
-
version:
|
227
|
+
version: '2.0'
|
269
228
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
270
229
|
requirements:
|
271
|
-
- - "
|
230
|
+
- - ">"
|
272
231
|
- !ruby/object:Gem::Version
|
273
|
-
version:
|
232
|
+
version: 1.3.1
|
274
233
|
requirements: []
|
275
234
|
rubyforge_project:
|
276
|
-
rubygems_version: 2.
|
235
|
+
rubygems_version: 2.5.1
|
277
236
|
signing_key:
|
278
237
|
specification_version: 4
|
279
238
|
summary: The DNSimple API client for Ruby
|
280
239
|
test_files:
|
281
|
-
- spec/dnsimple/client/
|
240
|
+
- spec/dnsimple/client/client_service_spec.rb
|
282
241
|
- spec/dnsimple/client/contacts_spec.rb
|
283
|
-
- spec/dnsimple/client/
|
284
|
-
- spec/dnsimple/client/domains_forwards_spec.rb
|
285
|
-
- spec/dnsimple/client/domains_privacy_spec.rb
|
286
|
-
- spec/dnsimple/client/domains_records_spec.rb
|
287
|
-
- spec/dnsimple/client/domains_sharing_spec.rb
|
242
|
+
- spec/dnsimple/client/domains_email_forwards_spec.rb
|
288
243
|
- spec/dnsimple/client/domains_spec.rb
|
289
|
-
- spec/dnsimple/client/
|
290
|
-
- spec/dnsimple/client/
|
244
|
+
- spec/dnsimple/client/identity_spec.rb
|
245
|
+
- spec/dnsimple/client/oauth_spec.rb
|
246
|
+
- spec/dnsimple/client/registrar_auto_renewal_spec.rb
|
291
247
|
- spec/dnsimple/client/registrar_spec.rb
|
292
|
-
- spec/dnsimple/client/
|
293
|
-
- spec/dnsimple/client/
|
294
|
-
- spec/dnsimple/client/
|
295
|
-
- spec/dnsimple/client/
|
296
|
-
- spec/dnsimple/client/
|
297
|
-
- spec/dnsimple/client/users_spec.rb
|
298
|
-
- spec/dnsimple/client/vanity_name_servers_spec.rb
|
248
|
+
- spec/dnsimple/client/registrar_whois_privacy_spec.rb
|
249
|
+
- spec/dnsimple/client/tlds_spec.rb
|
250
|
+
- spec/dnsimple/client/webhooks_spec.rb
|
251
|
+
- spec/dnsimple/client/zones_records_spec.rb
|
252
|
+
- spec/dnsimple/client/zones_spec.rb
|
299
253
|
- spec/dnsimple/client_spec.rb
|
300
|
-
- spec/dnsimple/compatibility_spec.rb
|
301
254
|
- spec/dnsimple/extra_spec.rb
|
302
|
-
- spec/
|
303
|
-
- spec/
|
304
|
-
- spec/
|
305
|
-
- spec/
|
306
|
-
- spec/
|
307
|
-
- spec/
|
308
|
-
- spec/
|
309
|
-
- spec/
|
310
|
-
- spec/
|
311
|
-
- spec/
|
312
|
-
- spec/
|
313
|
-
- spec/
|
314
|
-
- spec/
|
315
|
-
- spec/
|
316
|
-
- spec/
|
317
|
-
- spec/
|
318
|
-
- spec/
|
319
|
-
- spec/
|
320
|
-
- spec/
|
321
|
-
- spec/
|
322
|
-
- spec/
|
323
|
-
- spec/
|
324
|
-
- spec/
|
325
|
-
- spec/
|
326
|
-
- spec/
|
327
|
-
- spec/
|
328
|
-
- spec/
|
329
|
-
- spec/
|
330
|
-
- spec/
|
331
|
-
- spec/
|
332
|
-
- spec/
|
333
|
-
- spec/
|
334
|
-
- spec/
|
335
|
-
- spec/
|
336
|
-
- spec/
|
337
|
-
- spec/
|
338
|
-
- spec/
|
339
|
-
- spec/
|
340
|
-
- spec/
|
341
|
-
- spec/
|
342
|
-
- spec/
|
343
|
-
- spec/
|
344
|
-
- spec/
|
345
|
-
- spec/
|
346
|
-
- spec/
|
347
|
-
- spec/
|
348
|
-
- spec/
|
349
|
-
- spec/
|
350
|
-
- spec/
|
351
|
-
- spec/
|
352
|
-
- spec/
|
353
|
-
- spec/
|
354
|
-
- spec/
|
355
|
-
- spec/
|
356
|
-
- spec/
|
357
|
-
- spec/
|
358
|
-
- spec/
|
359
|
-
- spec/
|
360
|
-
- spec/files/registrar/register/badrequest-missingregistrant.http
|
361
|
-
- spec/files/registrar/register/success.http
|
362
|
-
- spec/files/registrar/renew/badrequest-missingrenewal.http
|
363
|
-
- spec/files/registrar/renew/badrequest-unable.http
|
364
|
-
- spec/files/registrar/renew/success.http
|
365
|
-
- spec/files/registrar/transfer/success.http
|
366
|
-
- spec/files/services/applied/success.http
|
367
|
-
- spec/files/services/apply/success.http
|
368
|
-
- spec/files/services/available/success.http
|
369
|
-
- spec/files/services/notfound-service.http
|
370
|
-
- spec/files/services/service/success.http
|
371
|
-
- spec/files/services/services/success.http
|
372
|
-
- spec/files/services/unapply/success.http
|
373
|
-
- spec/files/subscriptions/subscription/success.http
|
374
|
-
- spec/files/templates/apply_template/success.http
|
375
|
-
- spec/files/templates/create_template/created.http
|
376
|
-
- spec/files/templates/delete_template/success-204.http
|
377
|
-
- spec/files/templates/delete_template/success.http
|
378
|
-
- spec/files/templates/notfound-template.http
|
379
|
-
- spec/files/templates/template/success.http
|
380
|
-
- spec/files/templates/templates/success.http
|
381
|
-
- spec/files/templates/update_template/success.http
|
382
|
-
- spec/files/templates_records/create_record/created.http
|
383
|
-
- spec/files/templates_records/delete_record/success-204.http
|
384
|
-
- spec/files/templates_records/delete_record/success.http
|
385
|
-
- spec/files/templates_records/notfound-template-record.http
|
386
|
-
- spec/files/templates_records/record/success.http
|
387
|
-
- spec/files/templates_records/records/success.http
|
388
|
-
- spec/files/templates_records/update_record/success.http
|
389
|
-
- spec/files/users/user/success.http
|
255
|
+
- spec/fixtures.http/badgateway.http
|
256
|
+
- spec/fixtures.http/checkDomain/success.http
|
257
|
+
- spec/fixtures.http/createContact/created.http
|
258
|
+
- spec/fixtures.http/createDomain/created.http
|
259
|
+
- spec/fixtures.http/createEmailForward/created.http
|
260
|
+
- spec/fixtures.http/createWebhook/created.http
|
261
|
+
- spec/fixtures.http/createZoneRecord/created.http
|
262
|
+
- spec/fixtures.http/deleteContact/success.http
|
263
|
+
- spec/fixtures.http/deleteDomain/success.http
|
264
|
+
- spec/fixtures.http/deleteEmailForward/success.http
|
265
|
+
- spec/fixtures.http/deleteWebhook/success.http
|
266
|
+
- spec/fixtures.http/deleteZoneRecord/success.http
|
267
|
+
- spec/fixtures.http/disableAutoRenewal/success.http
|
268
|
+
- spec/fixtures.http/disableWhoisPrivacy/success.http
|
269
|
+
- spec/fixtures.http/enableAutoRenewal/success.http
|
270
|
+
- spec/fixtures.http/enableWhoisPrivacy/created.http
|
271
|
+
- spec/fixtures.http/enableWhoisPrivacy/success.http
|
272
|
+
- spec/fixtures.http/getContact/success.http
|
273
|
+
- spec/fixtures.http/getDomain/success.http
|
274
|
+
- spec/fixtures.http/getEmailForward/success.http
|
275
|
+
- spec/fixtures.http/getTld/success.http
|
276
|
+
- spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http
|
277
|
+
- spec/fixtures.http/getTldExtendedAttributes/success.http
|
278
|
+
- spec/fixtures.http/getWebhook/success.http
|
279
|
+
- spec/fixtures.http/getWhoisPrivacy/success.http
|
280
|
+
- spec/fixtures.http/getZone/success.http
|
281
|
+
- spec/fixtures.http/getZoneRecord/success.http
|
282
|
+
- spec/fixtures.http/listContacts/success.http
|
283
|
+
- spec/fixtures.http/listDomains/success.http
|
284
|
+
- spec/fixtures.http/listEmailForwards/success.http
|
285
|
+
- spec/fixtures.http/listTlds/success.http
|
286
|
+
- spec/fixtures.http/listWebhooks/success.http
|
287
|
+
- spec/fixtures.http/listZoneRecords/success.http
|
288
|
+
- spec/fixtures.http/listZones/success.http
|
289
|
+
- spec/fixtures.http/notfound-contact.http
|
290
|
+
- spec/fixtures.http/notfound-domain.http
|
291
|
+
- spec/fixtures.http/notfound-emailforward.http
|
292
|
+
- spec/fixtures.http/notfound-record.http
|
293
|
+
- spec/fixtures.http/notfound-webhook.http
|
294
|
+
- spec/fixtures.http/notfound-zone.http
|
295
|
+
- spec/fixtures.http/oauthAccessToken/success.http
|
296
|
+
- spec/fixtures.http/pages-1of3.http
|
297
|
+
- spec/fixtures.http/pages-2of3.http
|
298
|
+
- spec/fixtures.http/pages-3of3.http
|
299
|
+
- spec/fixtures.http/registerDomain/success.http
|
300
|
+
- spec/fixtures.http/renewDomain/error-tooearly.http
|
301
|
+
- spec/fixtures.http/renewDomain/success.http
|
302
|
+
- spec/fixtures.http/resetDomainToken/success.http
|
303
|
+
- spec/fixtures.http/response.http
|
304
|
+
- spec/fixtures.http/transferDomain/error-indnsimple.http
|
305
|
+
- spec/fixtures.http/transferDomain/error-missing-authcode.http
|
306
|
+
- spec/fixtures.http/transferDomain/success.http
|
307
|
+
- spec/fixtures.http/transferDomainOut/success.http
|
308
|
+
- spec/fixtures.http/updateContact/success.http
|
309
|
+
- spec/fixtures.http/updateZoneRecord/success.http
|
310
|
+
- spec/fixtures.http/whoami/success.http
|
311
|
+
- spec/fixtures.http/whoami/success_account.http
|
312
|
+
- spec/fixtures.http/whoami/success_user.http
|
390
313
|
- spec/spec_helper.rb
|
391
314
|
- spec/support/helpers.rb
|
392
315
|
- spec/support/webmock.rb
|