sparqcode-dnsimple-ruby 1.2.6

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 (118) hide show
  1. data/.bundle/config +3 -0
  2. data/.rvmrc +1 -0
  3. data/Gemfile +16 -0
  4. data/Gemfile.lock +71 -0
  5. data/LICENSE +22 -0
  6. data/README +125 -0
  7. data/README.rdoc +125 -0
  8. data/README.textile +161 -0
  9. data/Rakefile +33 -0
  10. data/VERSION +1 -0
  11. data/bin/dnsimple +4 -0
  12. data/bin/dnsimple.rb +153 -0
  13. data/dnsimple-ruby.gemspec +191 -0
  14. data/features/README +12 -0
  15. data/features/cli/certificates/purchase_certificate.feature +10 -0
  16. data/features/cli/contacts/create_contact.feature +10 -0
  17. data/features/cli/domains/check_domain.feature +10 -0
  18. data/features/cli/domains/create_domain.feature +10 -0
  19. data/features/cli/domains/delete_domain.feature +11 -0
  20. data/features/cli/domains/register_domain.feature +10 -0
  21. data/features/cli/records/create_ptr_record.feature +11 -0
  22. data/features/cli/records/create_record.feature +12 -0
  23. data/features/cli/records/delete_record.feature +14 -0
  24. data/features/cli/templates/apply_template.feature +11 -0
  25. data/features/step_definitions/certificate_steps.rb +3 -0
  26. data/features/step_definitions/cli_steps.rb +8 -0
  27. data/features/step_definitions/domain_steps.rb +32 -0
  28. data/features/step_definitions/record_steps.rb +38 -0
  29. data/features/step_definitions/template_steps.rb +9 -0
  30. data/features/support/env.rb +17 -0
  31. data/fixtures/vcr_cassettes/DNSimple_Certificate/_all.yml +44 -0
  32. data/fixtures/vcr_cassettes/DNSimple_Certificate/_purchase.yml +44 -0
  33. data/fixtures/vcr_cassettes/DNSimple_Certificate/_submit.yml +44 -0
  34. data/fixtures/vcr_cassettes/DNSimple_Contact/a_new_contact.yml +42 -0
  35. data/fixtures/vcr_cassettes/DNSimple_Contact/an_existing_contact.yml +42 -0
  36. data/fixtures/vcr_cassettes/DNSimple_Domain/_all.yml +130 -0
  37. data/fixtures/vcr_cassettes/DNSimple_Domain/applying_templates.yml +216 -0
  38. data/fixtures/vcr_cassettes/DNSimple_Domain/creating_a_new_domain.yml +44 -0
  39. data/fixtures/vcr_cassettes/DNSimple_Domain/finding_an_existing_domain/by_id.yml +44 -0
  40. data/fixtures/vcr_cassettes/DNSimple_Domain/finding_an_existing_domain/by_name.yml +44 -0
  41. data/fixtures/vcr_cassettes/DNSimple_Domain/registration/with_a_new_registrant_contact.yml +44 -0
  42. data/fixtures/vcr_cassettes/DNSimple_Domain/registration/with_an_existing_contact.yml +44 -0
  43. data/fixtures/vcr_cassettes/DNSimple_Domain/setting_name_servers.yml +30 -0
  44. data/fixtures/vcr_cassettes/DNSimple_ExtendedAttribute/list_extended_attributes/for_ca.yml +40 -0
  45. data/fixtures/vcr_cassettes/DNSimple_ExtendedAttribute/list_extended_attributes/for_com.yml +40 -0
  46. data/fixtures/vcr_cassettes/DNSimple_Record/_all.yml +173 -0
  47. data/fixtures/vcr_cassettes/DNSimple_Record/creating_a_new_record.yml +44 -0
  48. data/fixtures/vcr_cassettes/DNSimple_Record/find_a_record.yml +44 -0
  49. data/fixtures/vcr_cassettes/DNSimple_Template/a_template.yml +44 -0
  50. data/fixtures/vcr_cassettes/DNSimple_User/_me.yml +42 -0
  51. data/lib/dnsimple.rb +19 -0
  52. data/lib/dnsimple/certificate.rb +158 -0
  53. data/lib/dnsimple/cli.rb +122 -0
  54. data/lib/dnsimple/client.rb +74 -0
  55. data/lib/dnsimple/command.rb +10 -0
  56. data/lib/dnsimple/commands/add_service.rb +16 -0
  57. data/lib/dnsimple/commands/add_template_record.rb +18 -0
  58. data/lib/dnsimple/commands/apply_template.rb +15 -0
  59. data/lib/dnsimple/commands/check_domain.rb +11 -0
  60. data/lib/dnsimple/commands/clear_domain.rb +16 -0
  61. data/lib/dnsimple/commands/create_contact.rb +21 -0
  62. data/lib/dnsimple/commands/create_domain.rb +16 -0
  63. data/lib/dnsimple/commands/create_record.rb +20 -0
  64. data/lib/dnsimple/commands/create_template.rb +14 -0
  65. data/lib/dnsimple/commands/delete_contact.rb +14 -0
  66. data/lib/dnsimple/commands/delete_domain.rb +14 -0
  67. data/lib/dnsimple/commands/delete_record.rb +16 -0
  68. data/lib/dnsimple/commands/delete_template.rb +13 -0
  69. data/lib/dnsimple/commands/delete_template_record.rb +16 -0
  70. data/lib/dnsimple/commands/describe_certificate.rb +34 -0
  71. data/lib/dnsimple/commands/describe_contact.rb +25 -0
  72. data/lib/dnsimple/commands/describe_domain.rb +14 -0
  73. data/lib/dnsimple/commands/describe_record.rb +16 -0
  74. data/lib/dnsimple/commands/describe_service.rb +12 -0
  75. data/lib/dnsimple/commands/describe_user.rb +18 -0
  76. data/lib/dnsimple/commands/list_applied_services.rb +16 -0
  77. data/lib/dnsimple/commands/list_available_services.rb +16 -0
  78. data/lib/dnsimple/commands/list_certificates.rb +15 -0
  79. data/lib/dnsimple/commands/list_contacts.rb +13 -0
  80. data/lib/dnsimple/commands/list_domains.rb +13 -0
  81. data/lib/dnsimple/commands/list_extended_attributes.rb +25 -0
  82. data/lib/dnsimple/commands/list_records.rb +21 -0
  83. data/lib/dnsimple/commands/list_services.rb +14 -0
  84. data/lib/dnsimple/commands/list_template_records.rb +17 -0
  85. data/lib/dnsimple/commands/list_templates.rb +13 -0
  86. data/lib/dnsimple/commands/purchase_certificate.rb +19 -0
  87. data/lib/dnsimple/commands/register_domain.rb +33 -0
  88. data/lib/dnsimple/commands/remove_service.rb +14 -0
  89. data/lib/dnsimple/commands/submit_certificate.rb +19 -0
  90. data/lib/dnsimple/commands/transfer_domain.rb +21 -0
  91. data/lib/dnsimple/commands/update_contact.rb +25 -0
  92. data/lib/dnsimple/commands/update_record.rb +23 -0
  93. data/lib/dnsimple/contact.rb +181 -0
  94. data/lib/dnsimple/domain.rb +246 -0
  95. data/lib/dnsimple/error.rb +32 -0
  96. data/lib/dnsimple/extended_attribute.rb +73 -0
  97. data/lib/dnsimple/record.rb +128 -0
  98. data/lib/dnsimple/service.rb +58 -0
  99. data/lib/dnsimple/template.rb +91 -0
  100. data/lib/dnsimple/template_record.rb +103 -0
  101. data/lib/dnsimple/transfer_order.rb +45 -0
  102. data/lib/dnsimple/user.rb +44 -0
  103. data/spec/README +10 -0
  104. data/spec/certificate_spec.rb +46 -0
  105. data/spec/command_spec.rb +19 -0
  106. data/spec/commands/add_service_spec.rb +29 -0
  107. data/spec/commands/create_record_spec.rb +23 -0
  108. data/spec/commands/list_records_spec.rb +34 -0
  109. data/spec/commands/purchase_certificate_spec.rb +24 -0
  110. data/spec/commands/submit_certificate_spec.rb +19 -0
  111. data/spec/contact_spec.rb +35 -0
  112. data/spec/domain_spec.rb +97 -0
  113. data/spec/extended_attributes_spec.rb +19 -0
  114. data/spec/record_spec.rb +59 -0
  115. data/spec/spec_helper.rb +22 -0
  116. data/spec/template_spec.rb +11 -0
  117. data/spec/user_spec.rb +23 -0
  118. metadata +353 -0
@@ -0,0 +1,59 @@
1
+ require 'spec_helper'
2
+
3
+ describe DNSimple::Record do
4
+
5
+ let(:domain_name) { 'example.com' }
6
+ let(:domain) { DNSimple::Domain.new(:name => domain_name) }
7
+
8
+ describe "#fqdn" do
9
+ it "joins the name and domain name" do
10
+ record = DNSimple::Record.new(:name => 'www', :domain => domain)
11
+ record.fqdn.should eq("www.#{domain_name}")
12
+ end
13
+ it "strips a blank name" do
14
+ record = DNSimple::Record.new(:name => '', :domain => domain)
15
+ record.fqdn.should eq(domain_name)
16
+ end
17
+ end
18
+
19
+ describe "creating a new record" do
20
+ use_vcr_cassette
21
+ it "has specific attributes" do
22
+ record = DNSimple::Record.create(domain, "", "A", "1.2.3.4", :ttl => 600)
23
+ record.name.should eql("")
24
+ record.record_type.should eql("A")
25
+ record.content.should eql("1.2.3.4")
26
+ record.ttl.should eql(600)
27
+ record.id.should_not be_nil
28
+ end
29
+ end
30
+ describe "find a record" do
31
+ use_vcr_cassette
32
+ it "can be found by id" do
33
+ record = DNSimple::Record.find(domain, 70)
34
+ record.name.should eql("")
35
+ record.record_type.should eql("A")
36
+ record.content.should eql("1.2.3.4")
37
+ record.ttl.should eql(600)
38
+ record.id.should_not be_nil
39
+ end
40
+ end
41
+
42
+ describe ".all" do
43
+ use_vcr_cassette
44
+ before do
45
+ @records = []
46
+
47
+ @records << DNSimple::Record.create(domain, "", "A", "4.5.6.7")
48
+ @records << DNSimple::Record.create(domain, "www", "CNAME", "testdomain.com")
49
+ @records << DNSimple::Record.create(domain, "", "MX", "mail.foo.com", :prio => 10)
50
+ end
51
+
52
+ it "returns a list of records" do
53
+ records = DNSimple::Record.all(domain)
54
+ records.should_not be_empty
55
+ records.length.should eql(@records.length)
56
+ end
57
+ end
58
+ end
59
+
@@ -0,0 +1,22 @@
1
+ require 'vcr'
2
+ require 'cgi'
3
+ require 'lib/dnsimple'
4
+
5
+ VCR.config do |c|
6
+ c.cassette_library_dir = 'fixtures/vcr_cassettes'
7
+ c.stub_with :fakeweb
8
+ c.filter_sensitive_data("<USERNAME>") { CGI::escape(DNSimple::Client.username) }
9
+ c.filter_sensitive_data("<PASSWORD>") { CGI::escape(DNSimple::Client.password) }
10
+ # c.allow_http_connections_when_no_cassette = true
11
+ end
12
+
13
+ RSpec.configure do |c|
14
+ c.mock_framework = :mocha
15
+ c.extend VCR::RSpec::Macros
16
+ end
17
+
18
+ config = YAML.load(File.new(File.expand_path('~/.dnsimple.local')))
19
+
20
+ DNSimple::Client.base_uri = config['site'] || "https://test.dnsimple.com/"
21
+ DNSimple::Client.username = config['username']
22
+ DNSimple::Client.password = config['password']
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe DNSimple::Template do
4
+ describe "a template" do
5
+ use_vcr_cassette
6
+ it "can be found by name" do
7
+ template = DNSimple::Template.find('googleapps')
8
+ template.id.should_not be_nil
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,23 @@
1
+ require 'spec_helper'
2
+
3
+ describe DNSimple::User do
4
+ describe ".me" do
5
+ use_vcr_cassette
6
+ let(:user) { DNSimple::User.me }
7
+
8
+ it "returns the current user" do
9
+ user.should_not be_nil
10
+ end
11
+
12
+ it "has attributes" do
13
+ user.id.should_not be_nil
14
+ user.created_at.should_not be_nil
15
+ user.updated_at.should_not be_nil
16
+ user.email.should_not be_nil
17
+ user.login_count.should_not be_nil
18
+ user.failed_login_count.should_not be_nil
19
+ user.domain_count.should_not be_nil
20
+ user.domain_limit.should_not be_nil
21
+ end
22
+ end
23
+ end
metadata ADDED
@@ -0,0 +1,353 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sparqcode-dnsimple-ruby
3
+ version: !ruby/object:Gem::Version
4
+ hash: 19
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 2
9
+ - 6
10
+ version: 1.2.6
11
+ platform: ruby
12
+ authors:
13
+ - Anthony Eden
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-03-10 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: httparty
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
31
+ version: "0"
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: rake
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ hash: 3
43
+ segments:
44
+ - 0
45
+ version: "0"
46
+ type: :development
47
+ version_requirements: *id002
48
+ - !ruby/object:Gem::Dependency
49
+ name: jeweler
50
+ prerelease: false
51
+ requirement: &id003 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ hash: 3
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ type: :development
61
+ version_requirements: *id003
62
+ - !ruby/object:Gem::Dependency
63
+ name: rspec
64
+ prerelease: false
65
+ requirement: &id004 !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ hash: 15
71
+ segments:
72
+ - 2
73
+ - 0
74
+ - 0
75
+ version: 2.0.0
76
+ type: :development
77
+ version_requirements: *id004
78
+ - !ruby/object:Gem::Dependency
79
+ name: mocha
80
+ prerelease: false
81
+ requirement: &id005 !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ hash: 3
87
+ segments:
88
+ - 0
89
+ version: "0"
90
+ type: :development
91
+ version_requirements: *id005
92
+ - !ruby/object:Gem::Dependency
93
+ name: ruby-debug
94
+ prerelease: false
95
+ requirement: &id006 !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ hash: 3
101
+ segments:
102
+ - 0
103
+ version: "0"
104
+ type: :development
105
+ version_requirements: *id006
106
+ - !ruby/object:Gem::Dependency
107
+ name: cucumber
108
+ prerelease: false
109
+ requirement: &id007 !ruby/object:Gem::Requirement
110
+ none: false
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ hash: 3
115
+ segments:
116
+ - 0
117
+ version: "0"
118
+ type: :development
119
+ version_requirements: *id007
120
+ - !ruby/object:Gem::Dependency
121
+ name: aruba
122
+ prerelease: false
123
+ requirement: &id008 !ruby/object:Gem::Requirement
124
+ none: false
125
+ requirements:
126
+ - - ">="
127
+ - !ruby/object:Gem::Version
128
+ hash: 3
129
+ segments:
130
+ - 0
131
+ version: "0"
132
+ type: :development
133
+ version_requirements: *id008
134
+ - !ruby/object:Gem::Dependency
135
+ name: ruby-debug
136
+ prerelease: false
137
+ requirement: &id009 !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ hash: 3
143
+ segments:
144
+ - 0
145
+ version: "0"
146
+ type: :development
147
+ version_requirements: *id009
148
+ - !ruby/object:Gem::Dependency
149
+ name: fakeweb
150
+ prerelease: false
151
+ requirement: &id010 !ruby/object:Gem::Requirement
152
+ none: false
153
+ requirements:
154
+ - - ">="
155
+ - !ruby/object:Gem::Version
156
+ hash: 3
157
+ segments:
158
+ - 0
159
+ version: "0"
160
+ type: :development
161
+ version_requirements: *id010
162
+ - !ruby/object:Gem::Dependency
163
+ name: vcr
164
+ prerelease: false
165
+ requirement: &id011 !ruby/object:Gem::Requirement
166
+ none: false
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ hash: 3
171
+ segments:
172
+ - 0
173
+ version: "0"
174
+ type: :development
175
+ version_requirements: *id011
176
+ - !ruby/object:Gem::Dependency
177
+ name: httparty
178
+ prerelease: false
179
+ requirement: &id012 !ruby/object:Gem::Requirement
180
+ none: false
181
+ requirements:
182
+ - - ">="
183
+ - !ruby/object:Gem::Version
184
+ hash: 3
185
+ segments:
186
+ - 0
187
+ version: "0"
188
+ type: :runtime
189
+ version_requirements: *id012
190
+ description: A ruby wrapper for the DNSimple API that also includes a command-line client. Modified by SPARQCode to include the ability to set name servers on a domain (hopefully part of the official gem soon).
191
+ email: anthony.eden@dnsimple.com
192
+ executables:
193
+ - dnsimple
194
+ extensions: []
195
+
196
+ extra_rdoc_files:
197
+ - LICENSE
198
+ - README
199
+ - README.rdoc
200
+ - README.textile
201
+ files:
202
+ - .bundle/config
203
+ - .rvmrc
204
+ - Gemfile
205
+ - Gemfile.lock
206
+ - LICENSE
207
+ - README
208
+ - README.rdoc
209
+ - README.textile
210
+ - Rakefile
211
+ - VERSION
212
+ - bin/dnsimple
213
+ - bin/dnsimple.rb
214
+ - dnsimple-ruby.gemspec
215
+ - features/README
216
+ - features/cli/certificates/purchase_certificate.feature
217
+ - features/cli/contacts/create_contact.feature
218
+ - features/cli/domains/check_domain.feature
219
+ - features/cli/domains/create_domain.feature
220
+ - features/cli/domains/delete_domain.feature
221
+ - features/cli/domains/register_domain.feature
222
+ - features/cli/records/create_ptr_record.feature
223
+ - features/cli/records/create_record.feature
224
+ - features/cli/records/delete_record.feature
225
+ - features/cli/templates/apply_template.feature
226
+ - features/step_definitions/certificate_steps.rb
227
+ - features/step_definitions/cli_steps.rb
228
+ - features/step_definitions/domain_steps.rb
229
+ - features/step_definitions/record_steps.rb
230
+ - features/step_definitions/template_steps.rb
231
+ - features/support/env.rb
232
+ - fixtures/vcr_cassettes/DNSimple_Certificate/_all.yml
233
+ - fixtures/vcr_cassettes/DNSimple_Certificate/_purchase.yml
234
+ - fixtures/vcr_cassettes/DNSimple_Certificate/_submit.yml
235
+ - fixtures/vcr_cassettes/DNSimple_Contact/a_new_contact.yml
236
+ - fixtures/vcr_cassettes/DNSimple_Contact/an_existing_contact.yml
237
+ - fixtures/vcr_cassettes/DNSimple_Domain/_all.yml
238
+ - fixtures/vcr_cassettes/DNSimple_Domain/applying_templates.yml
239
+ - fixtures/vcr_cassettes/DNSimple_Domain/creating_a_new_domain.yml
240
+ - fixtures/vcr_cassettes/DNSimple_Domain/finding_an_existing_domain/by_id.yml
241
+ - fixtures/vcr_cassettes/DNSimple_Domain/finding_an_existing_domain/by_name.yml
242
+ - fixtures/vcr_cassettes/DNSimple_Domain/registration/with_a_new_registrant_contact.yml
243
+ - fixtures/vcr_cassettes/DNSimple_Domain/registration/with_an_existing_contact.yml
244
+ - fixtures/vcr_cassettes/DNSimple_Domain/setting_name_servers.yml
245
+ - fixtures/vcr_cassettes/DNSimple_ExtendedAttribute/list_extended_attributes/for_ca.yml
246
+ - fixtures/vcr_cassettes/DNSimple_ExtendedAttribute/list_extended_attributes/for_com.yml
247
+ - fixtures/vcr_cassettes/DNSimple_Record/_all.yml
248
+ - fixtures/vcr_cassettes/DNSimple_Record/creating_a_new_record.yml
249
+ - fixtures/vcr_cassettes/DNSimple_Record/find_a_record.yml
250
+ - fixtures/vcr_cassettes/DNSimple_Template/a_template.yml
251
+ - fixtures/vcr_cassettes/DNSimple_User/_me.yml
252
+ - lib/dnsimple.rb
253
+ - lib/dnsimple/certificate.rb
254
+ - lib/dnsimple/cli.rb
255
+ - lib/dnsimple/client.rb
256
+ - lib/dnsimple/command.rb
257
+ - lib/dnsimple/commands/add_service.rb
258
+ - lib/dnsimple/commands/add_template_record.rb
259
+ - lib/dnsimple/commands/apply_template.rb
260
+ - lib/dnsimple/commands/check_domain.rb
261
+ - lib/dnsimple/commands/clear_domain.rb
262
+ - lib/dnsimple/commands/create_contact.rb
263
+ - lib/dnsimple/commands/create_domain.rb
264
+ - lib/dnsimple/commands/create_record.rb
265
+ - lib/dnsimple/commands/create_template.rb
266
+ - lib/dnsimple/commands/delete_contact.rb
267
+ - lib/dnsimple/commands/delete_domain.rb
268
+ - lib/dnsimple/commands/delete_record.rb
269
+ - lib/dnsimple/commands/delete_template.rb
270
+ - lib/dnsimple/commands/delete_template_record.rb
271
+ - lib/dnsimple/commands/describe_certificate.rb
272
+ - lib/dnsimple/commands/describe_contact.rb
273
+ - lib/dnsimple/commands/describe_domain.rb
274
+ - lib/dnsimple/commands/describe_record.rb
275
+ - lib/dnsimple/commands/describe_service.rb
276
+ - lib/dnsimple/commands/describe_user.rb
277
+ - lib/dnsimple/commands/list_applied_services.rb
278
+ - lib/dnsimple/commands/list_available_services.rb
279
+ - lib/dnsimple/commands/list_certificates.rb
280
+ - lib/dnsimple/commands/list_contacts.rb
281
+ - lib/dnsimple/commands/list_domains.rb
282
+ - lib/dnsimple/commands/list_extended_attributes.rb
283
+ - lib/dnsimple/commands/list_records.rb
284
+ - lib/dnsimple/commands/list_services.rb
285
+ - lib/dnsimple/commands/list_template_records.rb
286
+ - lib/dnsimple/commands/list_templates.rb
287
+ - lib/dnsimple/commands/purchase_certificate.rb
288
+ - lib/dnsimple/commands/register_domain.rb
289
+ - lib/dnsimple/commands/remove_service.rb
290
+ - lib/dnsimple/commands/submit_certificate.rb
291
+ - lib/dnsimple/commands/transfer_domain.rb
292
+ - lib/dnsimple/commands/update_contact.rb
293
+ - lib/dnsimple/commands/update_record.rb
294
+ - lib/dnsimple/contact.rb
295
+ - lib/dnsimple/domain.rb
296
+ - lib/dnsimple/error.rb
297
+ - lib/dnsimple/extended_attribute.rb
298
+ - lib/dnsimple/record.rb
299
+ - lib/dnsimple/service.rb
300
+ - lib/dnsimple/template.rb
301
+ - lib/dnsimple/template_record.rb
302
+ - lib/dnsimple/transfer_order.rb
303
+ - lib/dnsimple/user.rb
304
+ - spec/README
305
+ - spec/certificate_spec.rb
306
+ - spec/command_spec.rb
307
+ - spec/commands/add_service_spec.rb
308
+ - spec/commands/create_record_spec.rb
309
+ - spec/commands/list_records_spec.rb
310
+ - spec/commands/purchase_certificate_spec.rb
311
+ - spec/commands/submit_certificate_spec.rb
312
+ - spec/contact_spec.rb
313
+ - spec/domain_spec.rb
314
+ - spec/extended_attributes_spec.rb
315
+ - spec/record_spec.rb
316
+ - spec/spec_helper.rb
317
+ - spec/template_spec.rb
318
+ - spec/user_spec.rb
319
+ homepage: http://github.com/MikeEmery/dnsimple-ruby
320
+ licenses: []
321
+
322
+ post_install_message:
323
+ rdoc_options: []
324
+
325
+ require_paths:
326
+ - lib
327
+ required_ruby_version: !ruby/object:Gem::Requirement
328
+ none: false
329
+ requirements:
330
+ - - ">="
331
+ - !ruby/object:Gem::Version
332
+ hash: 3
333
+ segments:
334
+ - 0
335
+ version: "0"
336
+ required_rubygems_version: !ruby/object:Gem::Requirement
337
+ none: false
338
+ requirements:
339
+ - - ">="
340
+ - !ruby/object:Gem::Version
341
+ hash: 3
342
+ segments:
343
+ - 0
344
+ version: "0"
345
+ requirements: []
346
+
347
+ rubyforge_project:
348
+ rubygems_version: 1.8.15
349
+ signing_key:
350
+ specification_version: 3
351
+ summary: A ruby wrapper for the DNSimple API
352
+ test_files: []
353
+