dnsimple-ruby 1.3.2 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +9 -2
  3. data/.rspec +1 -0
  4. data/.ruby-gemset +1 -0
  5. data/.ruby-version +1 -0
  6. data/.travis.yml +7 -0
  7. data/CHANGELOG.md +20 -0
  8. data/Gemfile +0 -2
  9. data/LICENSE +2 -2
  10. data/README.md +121 -0
  11. data/Rakefile +30 -14
  12. data/bin/dnsimple.rb +1 -1
  13. data/dnsimple-ruby.gemspec +9 -8
  14. data/features/README +1 -1
  15. data/features/step_definitions/cli_steps.rb +1 -1
  16. data/features/support/env.rb +4 -4
  17. data/fixtures/vcr_cassettes/DNSimple_Certificate/_all.yml +45 -32
  18. data/fixtures/vcr_cassettes/DNSimple_Certificate/_purchase.yml +45 -32
  19. data/fixtures/vcr_cassettes/DNSimple_Certificate/_submit.yml +45 -32
  20. data/fixtures/vcr_cassettes/DNSimple_Contact/a_new_contact.yml +39 -31
  21. data/fixtures/vcr_cassettes/DNSimple_Contact/an_existing_contact.yml +39 -31
  22. data/fixtures/vcr_cassettes/DNSimple_Domain/_all.yml +113 -94
  23. data/fixtures/vcr_cassettes/DNSimple_Domain/applying_templates.yml +186 -156
  24. data/fixtures/vcr_cassettes/DNSimple_Domain/creating_a_new_domain.yml +39 -32
  25. data/fixtures/vcr_cassettes/DNSimple_Domain/finding_an_existing_domain/by_id.yml +39 -32
  26. data/fixtures/vcr_cassettes/DNSimple_Domain/finding_an_existing_domain/by_name.yml +39 -32
  27. data/fixtures/vcr_cassettes/DNSimple_Domain/registration/with_a_new_registrant_contact.yml +40 -32
  28. data/fixtures/vcr_cassettes/DNSimple_Domain/registration/with_an_existing_contact.yml +40 -32
  29. data/fixtures/vcr_cassettes/DNSimple_ExtendedAttribute/list_extended_attributes/for_ca.yml +262 -29
  30. data/fixtures/vcr_cassettes/DNSimple_ExtendedAttribute/list_extended_attributes/for_com.yml +35 -29
  31. data/fixtures/vcr_cassettes/DNSimple_Record/_all.yml +147 -125
  32. data/fixtures/vcr_cassettes/DNSimple_Record/creating_a_new_record.yml +39 -32
  33. data/fixtures/vcr_cassettes/DNSimple_Record/find_a_record.yml +39 -32
  34. data/fixtures/vcr_cassettes/DNSimple_Template/a_template.yml +41 -32
  35. data/fixtures/vcr_cassettes/DNSimple_User/_me.yml +38 -31
  36. data/lib/dnsimple.rb +14 -1
  37. data/lib/dnsimple/base.rb +7 -5
  38. data/lib/dnsimple/certificate.rb +100 -95
  39. data/lib/dnsimple/cli.rb +92 -93
  40. data/lib/dnsimple/client.rb +109 -99
  41. data/lib/dnsimple/commands/{describe_certificate.rb → certificate_describe.rb} +2 -2
  42. data/lib/dnsimple/commands/{list_certificates.rb → certificate_list.rb} +2 -2
  43. data/lib/dnsimple/commands/{purchase_certificate.rb → certificate_purchase.rb} +3 -5
  44. data/lib/dnsimple/commands/{submit_certificate.rb → certificate_submit.rb} +3 -5
  45. data/lib/dnsimple/commands/{create_contact.rb → contact_create.rb} +8 -6
  46. data/lib/dnsimple/commands/{delete_contact.rb → contact_delete.rb} +2 -2
  47. data/lib/dnsimple/commands/{describe_contact.rb → contact_describe.rb} +2 -2
  48. data/lib/dnsimple/commands/{list_contacts.rb → contact_list.rb} +2 -2
  49. data/lib/dnsimple/commands/{update_contact.rb → contact_update.rb} +2 -2
  50. data/lib/dnsimple/commands/{apply_template.rb → domain_apply_template.rb} +2 -2
  51. data/lib/dnsimple/commands/{check_domain.rb → domain_check.rb} +2 -2
  52. data/lib/dnsimple/commands/{clear_domain.rb → domain_clear.rb} +2 -2
  53. data/lib/dnsimple/commands/{create_domain.rb → domain_create.rb} +2 -2
  54. data/lib/dnsimple/commands/{delete_domain.rb → domain_delete.rb} +2 -2
  55. data/lib/dnsimple/commands/{describe_domain.rb → domain_describe.rb} +2 -2
  56. data/lib/dnsimple/commands/{list_domains.rb → domain_list.rb} +2 -2
  57. data/lib/dnsimple/commands/{register_domain.rb → domain_register.rb} +2 -2
  58. data/lib/dnsimple/commands/{transfer_domain.rb → domain_transfer.rb} +2 -2
  59. data/lib/dnsimple/commands/{list_extended_attributes.rb → extended_attribute_list.rb} +2 -2
  60. data/lib/dnsimple/commands/{describe_user.rb → me.rb} +2 -2
  61. data/lib/dnsimple/commands/{create_record.rb → record_create.rb} +5 -7
  62. data/lib/dnsimple/commands/{delete_record.rb → record_delete.rb} +2 -2
  63. data/lib/dnsimple/commands/{describe_record.rb → record_describe.rb} +2 -2
  64. data/lib/dnsimple/commands/{list_records.rb → record_list.rb} +4 -6
  65. data/lib/dnsimple/commands/{update_record.rb → record_update.rb} +2 -2
  66. data/lib/dnsimple/commands/{add_service.rb → service_add.rb} +3 -5
  67. data/lib/dnsimple/commands/{describe_service.rb → service_describe.rb} +2 -2
  68. data/lib/dnsimple/commands/{list_services.rb → service_list.rb} +2 -2
  69. data/lib/dnsimple/commands/{list_applied_services.rb → service_list_applied.rb} +2 -2
  70. data/lib/dnsimple/commands/{list_available_services.rb → service_list_available.rb} +2 -2
  71. data/lib/dnsimple/commands/{remove_service.rb → service_remove.rb} +2 -2
  72. data/lib/dnsimple/commands/{create_template.rb → template_create.rb} +2 -2
  73. data/lib/dnsimple/commands/{delete_template.rb → template_delete.rb} +2 -2
  74. data/lib/dnsimple/commands/{add_template_record.rb → template_record_create.rb} +2 -2
  75. data/lib/dnsimple/commands/{delete_template_record.rb → template_record_delete.rb} +2 -2
  76. data/lib/dnsimple/commands/{list_template_records.rb → template_record_list.rb} +2 -2
  77. data/lib/dnsimple/commands/{list_templates.rb → templates_list.rb} +2 -2
  78. data/lib/dnsimple/contact.rb +115 -110
  79. data/lib/dnsimple/domain.rb +134 -132
  80. data/lib/dnsimple/error.rb +8 -19
  81. data/lib/dnsimple/extended_attribute.rb +39 -33
  82. data/lib/dnsimple/record.rb +71 -67
  83. data/lib/dnsimple/service.rb +31 -24
  84. data/lib/dnsimple/template.rb +52 -46
  85. data/lib/dnsimple/template_record.rb +61 -53
  86. data/lib/dnsimple/transfer_order.rb +24 -18
  87. data/lib/dnsimple/user.rb +22 -18
  88. data/lib/dnsimple/version.rb +1 -1
  89. data/spec/README +1 -1
  90. data/spec/ci/.dnsimple.test +3 -0
  91. data/spec/commands/{purchase_certificate_spec.rb → certificate_purchase_spec.rb} +3 -4
  92. data/spec/commands/{submit_certificate_spec.rb → certificate_submit_spec.rb} +3 -4
  93. data/spec/commands/{create_record_spec.rb → record_create_spec.rb} +4 -4
  94. data/spec/commands/{list_records_spec.rb → records_list_spec.rb} +2 -13
  95. data/spec/commands/{add_service_spec.rb → service_add_spec.rb} +3 -12
  96. data/spec/{certificate_spec.rb → dnsimple/certificate_spec.rb} +0 -0
  97. data/spec/dnsimple/client_spec.rb +45 -18
  98. data/spec/{contact_spec.rb → dnsimple/contact_spec.rb} +3 -1
  99. data/spec/{domain_spec.rb → dnsimple/domain_spec.rb} +2 -0
  100. data/spec/{extended_attributes_spec.rb → dnsimple/extended_attributes_spec.rb} +4 -0
  101. data/spec/{record_spec.rb → dnsimple/record_spec.rb} +2 -0
  102. data/spec/{template_spec.rb → dnsimple/template_spec.rb} +0 -0
  103. data/spec/{user_spec.rb → dnsimple/user_spec.rb} +2 -0
  104. data/spec/spec_helper.rb +24 -10
  105. metadata +96 -99
  106. data/Gemfile.lock +0 -71
  107. data/README +0 -108
  108. data/README.rdoc +0 -108
  109. data/README.textile +0 -138
  110. data/lib/dnsimple/command.rb +0 -10
  111. data/spec/command_spec.rb +0 -19
@@ -1,7 +1,7 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe DNSimple::Contact do
4
-
4
+
5
5
  describe "a new contact" do
6
6
  use_vcr_cassette
7
7
 
@@ -27,9 +27,11 @@ describe DNSimple::Contact do
27
27
 
28
28
  describe "an existing contact" do
29
29
  use_vcr_cassette
30
+
30
31
  it "can be found by id" do
31
32
  contact = DNSimple::Contact.find(1)
32
33
  contact.should_not be_nil
33
34
  end
34
35
  end
36
+
35
37
  end
@@ -1,3 +1,5 @@
1
+ require 'spec_helper'
2
+
1
3
  describe DNSimple::Domain do
2
4
  let(:domain_name) { "example.com" }
3
5
  let(:contact_id) { 1 }
@@ -1,3 +1,5 @@
1
+ require 'spec_helper'
2
+
1
3
  describe DNSimple::ExtendedAttribute do
2
4
 
3
5
  describe "list extended attributes" do
@@ -7,6 +9,7 @@ describe DNSimple::ExtendedAttribute do
7
9
  DNSimple::ExtendedAttribute.find('com').should be_empty
8
10
  end
9
11
  end
12
+
10
13
  context "for ca" do
11
14
  use_vcr_cassette
12
15
  it "is not empty" do
@@ -14,4 +17,5 @@ describe DNSimple::ExtendedAttribute do
14
17
  end
15
18
  end
16
19
  end
20
+
17
21
  end
@@ -1,3 +1,5 @@
1
+ require 'spec_helper'
2
+
1
3
  describe DNSimple::Record do
2
4
 
3
5
  let(:domain_name) { 'example.com' }
@@ -1,3 +1,5 @@
1
+ require 'spec_helper'
2
+
1
3
  describe DNSimple::User do
2
4
  describe ".me" do
3
5
  use_vcr_cassette
data/spec/spec_helper.rb CHANGED
@@ -1,12 +1,22 @@
1
- require 'cgi'
2
1
  require 'rubygems'
3
- require 'bundler'
2
+ require 'bundler/setup'
3
+ require 'cgi'
4
+ require 'vcr'
5
+
6
+ $:.unshift(File.dirname(__FILE__) + '/lib')
7
+ require 'dnsimple'
4
8
 
5
- Bundler.require :default, :development
9
+ config = YAML.load_file(File.expand_path(ENV['DNSIMPLE_TEST_CONFIG'] || '~/.dnsimple.test'))
6
10
 
7
- VCR.config do |c|
11
+ DNSimple::Client.base_uri = config['site'] if config['site'] # Example: https://test.dnsimple.com/
12
+ DNSimple::Client.base_uri = config['base_uri'] if config['base_uri'] # Example: https://test.dnsimple.com/
13
+ DNSimple::Client.username = config['username'] # Example: testusername@example.com
14
+ DNSimple::Client.password = config['password'] # Example: testpassword
15
+ DNSimple::Client.api_token = config['api_token'] # Example: 1234567890
16
+
17
+ VCR.configure do |c|
8
18
  c.cassette_library_dir = 'fixtures/vcr_cassettes'
9
- c.stub_with :fakeweb
19
+ c.hook_into :fakeweb
10
20
  c.filter_sensitive_data("<USERNAME>") { CGI::escape(DNSimple::Client.username) }
11
21
  c.filter_sensitive_data("<PASSWORD>") { CGI::escape(DNSimple::Client.password) }
12
22
  end
@@ -14,10 +24,14 @@ end
14
24
  RSpec.configure do |c|
15
25
  c.mock_framework = :mocha
16
26
  c.extend VCR::RSpec::Macros
17
- end
18
27
 
19
- config = YAML.load(File.new(File.expand_path('~/.dnsimple.local')))
28
+ # Silent the puts call in the commands
29
+ c.before do
30
+ @_stdout = $stdout
31
+ $stdout = StringIO.new
32
+ end
33
+ c.after do
34
+ $stdout = @_stdout
35
+ end
36
+ end
20
37
 
21
- DNSimple::Client.base_uri = config['site'] || "https://test.dnsimple.com/"
22
- DNSimple::Client.username = config['username']
23
- DNSimple::Client.password = config['password']
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnsimple-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
5
- prerelease:
4
+ version: 1.4.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Anthony Eden
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-07-12 00:00:00.000000000 Z
11
+ date: 2013-04-18 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: httparty
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ! '>='
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,20 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
26
37
  requirements:
27
38
  - - ! '>='
28
39
  - !ruby/object:Gem::Version
@@ -30,7 +41,6 @@ dependencies:
30
41
  - !ruby/object:Gem::Dependency
31
42
  name: aruba
32
43
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
44
  requirements:
35
45
  - - ! '>='
36
46
  - !ruby/object:Gem::Version
@@ -38,7 +48,6 @@ dependencies:
38
48
  type: :development
39
49
  prerelease: false
40
50
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
51
  requirements:
43
52
  - - ! '>='
44
53
  - !ruby/object:Gem::Version
@@ -46,7 +55,6 @@ dependencies:
46
55
  - !ruby/object:Gem::Dependency
47
56
  name: cucumber
48
57
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
58
  requirements:
51
59
  - - ! '>='
52
60
  - !ruby/object:Gem::Version
@@ -54,7 +62,6 @@ dependencies:
54
62
  type: :development
55
63
  prerelease: false
56
64
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
65
  requirements:
59
66
  - - ! '>='
60
67
  - !ruby/object:Gem::Version
@@ -62,7 +69,6 @@ dependencies:
62
69
  - !ruby/object:Gem::Dependency
63
70
  name: fakeweb
64
71
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
72
  requirements:
67
73
  - - ! '>='
68
74
  - !ruby/object:Gem::Version
@@ -70,7 +76,6 @@ dependencies:
70
76
  type: :development
71
77
  prerelease: false
72
78
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
79
  requirements:
75
80
  - - ! '>='
76
81
  - !ruby/object:Gem::Version
@@ -78,7 +83,6 @@ dependencies:
78
83
  - !ruby/object:Gem::Dependency
79
84
  name: mocha
80
85
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
86
  requirements:
83
87
  - - ! '>='
84
88
  - !ruby/object:Gem::Version
@@ -86,15 +90,13 @@ dependencies:
86
90
  type: :development
87
91
  prerelease: false
88
92
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
93
  requirements:
91
94
  - - ! '>='
92
95
  - !ruby/object:Gem::Version
93
96
  version: '0'
94
97
  - !ruby/object:Gem::Dependency
95
- name: rake
98
+ name: rspec
96
99
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
100
  requirements:
99
101
  - - ! '>='
100
102
  - !ruby/object:Gem::Version
@@ -102,31 +104,27 @@ dependencies:
102
104
  type: :development
103
105
  prerelease: false
104
106
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
107
  requirements:
107
108
  - - ! '>='
108
109
  - !ruby/object:Gem::Version
109
110
  version: '0'
110
111
  - !ruby/object:Gem::Dependency
111
- name: rspec
112
+ name: vcr
112
113
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
114
  requirements:
115
115
  - - ! '>='
116
116
  - !ruby/object:Gem::Version
117
- version: 2.0.0
117
+ version: '0'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
121
  requirements:
123
122
  - - ! '>='
124
123
  - !ruby/object:Gem::Version
125
- version: 2.0.0
124
+ version: '0'
126
125
  - !ruby/object:Gem::Dependency
127
- name: vcr
126
+ name: yard
128
127
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
128
  requirements:
131
129
  - - ! '>='
132
130
  - !ruby/object:Gem::Version
@@ -134,7 +132,6 @@ dependencies:
134
132
  type: :development
135
133
  prerelease: false
136
134
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
135
  requirements:
139
136
  - - ! '>='
140
137
  - !ruby/object:Gem::Version
@@ -148,18 +145,19 @@ executables:
148
145
  - dnsimple.rb
149
146
  extensions: []
150
147
  extra_rdoc_files:
148
+ - README.md
149
+ - CHANGELOG.md
151
150
  - LICENSE
152
- - README
153
- - README.rdoc
154
- - README.textile
155
151
  files:
156
152
  - .gitignore
153
+ - .rspec
154
+ - .ruby-gemset
155
+ - .ruby-version
156
+ - .travis.yml
157
+ - CHANGELOG.md
157
158
  - Gemfile
158
- - Gemfile.lock
159
159
  - LICENSE
160
- - README
161
- - README.rdoc
162
- - README.textile
160
+ - README.md
163
161
  - Rakefile
164
162
  - bin/dnsimple
165
163
  - bin/dnsimple.rb
@@ -206,44 +204,43 @@ files:
206
204
  - lib/dnsimple/certificate.rb
207
205
  - lib/dnsimple/cli.rb
208
206
  - lib/dnsimple/client.rb
209
- - lib/dnsimple/command.rb
210
- - lib/dnsimple/commands/add_service.rb
211
- - lib/dnsimple/commands/add_template_record.rb
212
- - lib/dnsimple/commands/apply_template.rb
213
- - lib/dnsimple/commands/check_domain.rb
214
- - lib/dnsimple/commands/clear_domain.rb
215
- - lib/dnsimple/commands/create_contact.rb
216
- - lib/dnsimple/commands/create_domain.rb
217
- - lib/dnsimple/commands/create_record.rb
218
- - lib/dnsimple/commands/create_template.rb
219
- - lib/dnsimple/commands/delete_contact.rb
220
- - lib/dnsimple/commands/delete_domain.rb
221
- - lib/dnsimple/commands/delete_record.rb
222
- - lib/dnsimple/commands/delete_template.rb
223
- - lib/dnsimple/commands/delete_template_record.rb
224
- - lib/dnsimple/commands/describe_certificate.rb
225
- - lib/dnsimple/commands/describe_contact.rb
226
- - lib/dnsimple/commands/describe_domain.rb
227
- - lib/dnsimple/commands/describe_record.rb
228
- - lib/dnsimple/commands/describe_service.rb
229
- - lib/dnsimple/commands/describe_user.rb
230
- - lib/dnsimple/commands/list_applied_services.rb
231
- - lib/dnsimple/commands/list_available_services.rb
232
- - lib/dnsimple/commands/list_certificates.rb
233
- - lib/dnsimple/commands/list_contacts.rb
234
- - lib/dnsimple/commands/list_domains.rb
235
- - lib/dnsimple/commands/list_extended_attributes.rb
236
- - lib/dnsimple/commands/list_records.rb
237
- - lib/dnsimple/commands/list_services.rb
238
- - lib/dnsimple/commands/list_template_records.rb
239
- - lib/dnsimple/commands/list_templates.rb
240
- - lib/dnsimple/commands/purchase_certificate.rb
241
- - lib/dnsimple/commands/register_domain.rb
242
- - lib/dnsimple/commands/remove_service.rb
243
- - lib/dnsimple/commands/submit_certificate.rb
244
- - lib/dnsimple/commands/transfer_domain.rb
245
- - lib/dnsimple/commands/update_contact.rb
246
- - lib/dnsimple/commands/update_record.rb
207
+ - lib/dnsimple/commands/certificate_describe.rb
208
+ - lib/dnsimple/commands/certificate_list.rb
209
+ - lib/dnsimple/commands/certificate_purchase.rb
210
+ - lib/dnsimple/commands/certificate_submit.rb
211
+ - lib/dnsimple/commands/contact_create.rb
212
+ - lib/dnsimple/commands/contact_delete.rb
213
+ - lib/dnsimple/commands/contact_describe.rb
214
+ - lib/dnsimple/commands/contact_list.rb
215
+ - lib/dnsimple/commands/contact_update.rb
216
+ - lib/dnsimple/commands/domain_apply_template.rb
217
+ - lib/dnsimple/commands/domain_check.rb
218
+ - lib/dnsimple/commands/domain_clear.rb
219
+ - lib/dnsimple/commands/domain_create.rb
220
+ - lib/dnsimple/commands/domain_delete.rb
221
+ - lib/dnsimple/commands/domain_describe.rb
222
+ - lib/dnsimple/commands/domain_list.rb
223
+ - lib/dnsimple/commands/domain_register.rb
224
+ - lib/dnsimple/commands/domain_transfer.rb
225
+ - lib/dnsimple/commands/extended_attribute_list.rb
226
+ - lib/dnsimple/commands/me.rb
227
+ - lib/dnsimple/commands/record_create.rb
228
+ - lib/dnsimple/commands/record_delete.rb
229
+ - lib/dnsimple/commands/record_describe.rb
230
+ - lib/dnsimple/commands/record_list.rb
231
+ - lib/dnsimple/commands/record_update.rb
232
+ - lib/dnsimple/commands/service_add.rb
233
+ - lib/dnsimple/commands/service_describe.rb
234
+ - lib/dnsimple/commands/service_list.rb
235
+ - lib/dnsimple/commands/service_list_applied.rb
236
+ - lib/dnsimple/commands/service_list_available.rb
237
+ - lib/dnsimple/commands/service_remove.rb
238
+ - lib/dnsimple/commands/template_create.rb
239
+ - lib/dnsimple/commands/template_delete.rb
240
+ - lib/dnsimple/commands/template_record_create.rb
241
+ - lib/dnsimple/commands/template_record_delete.rb
242
+ - lib/dnsimple/commands/template_record_list.rb
243
+ - lib/dnsimple/commands/templates_list.rb
247
244
  - lib/dnsimple/contact.rb
248
245
  - lib/dnsimple/domain.rb
249
246
  - lib/dnsimple/error.rb
@@ -256,44 +253,43 @@ files:
256
253
  - lib/dnsimple/user.rb
257
254
  - lib/dnsimple/version.rb
258
255
  - spec/README
259
- - spec/certificate_spec.rb
260
- - spec/command_spec.rb
261
- - spec/commands/add_service_spec.rb
262
- - spec/commands/create_record_spec.rb
263
- - spec/commands/list_records_spec.rb
264
- - spec/commands/purchase_certificate_spec.rb
265
- - spec/commands/submit_certificate_spec.rb
266
- - spec/contact_spec.rb
256
+ - spec/ci/.dnsimple.test
257
+ - spec/commands/certificate_purchase_spec.rb
258
+ - spec/commands/certificate_submit_spec.rb
259
+ - spec/commands/record_create_spec.rb
260
+ - spec/commands/records_list_spec.rb
261
+ - spec/commands/service_add_spec.rb
262
+ - spec/dnsimple/certificate_spec.rb
267
263
  - spec/dnsimple/client_spec.rb
268
- - spec/domain_spec.rb
269
- - spec/extended_attributes_spec.rb
270
- - spec/record_spec.rb
264
+ - spec/dnsimple/contact_spec.rb
265
+ - spec/dnsimple/domain_spec.rb
266
+ - spec/dnsimple/extended_attributes_spec.rb
267
+ - spec/dnsimple/record_spec.rb
268
+ - spec/dnsimple/template_spec.rb
269
+ - spec/dnsimple/user_spec.rb
271
270
  - spec/spec_helper.rb
272
- - spec/template_spec.rb
273
- - spec/user_spec.rb
274
271
  homepage: http://github.com/aetrion/dnsimple-ruby
275
272
  licenses: []
273
+ metadata: {}
276
274
  post_install_message:
277
275
  rdoc_options: []
278
276
  require_paths:
279
277
  - lib
280
278
  required_ruby_version: !ruby/object:Gem::Requirement
281
- none: false
282
279
  requirements:
283
280
  - - ! '>='
284
281
  - !ruby/object:Gem::Version
285
282
  version: '0'
286
283
  required_rubygems_version: !ruby/object:Gem::Requirement
287
- none: false
288
284
  requirements:
289
285
  - - ! '>='
290
286
  - !ruby/object:Gem::Version
291
287
  version: '0'
292
288
  requirements: []
293
289
  rubyforge_project:
294
- rubygems_version: 1.8.21
290
+ rubygems_version: 2.0.3
295
291
  signing_key:
296
- specification_version: 3
292
+ specification_version: 4
297
293
  summary: A ruby wrapper for the DNSimple API
298
294
  test_files:
299
295
  - features/README
@@ -314,18 +310,19 @@ test_files:
314
310
  - features/step_definitions/template_steps.rb
315
311
  - features/support/env.rb
316
312
  - spec/README
317
- - spec/certificate_spec.rb
318
- - spec/command_spec.rb
319
- - spec/commands/add_service_spec.rb
320
- - spec/commands/create_record_spec.rb
321
- - spec/commands/list_records_spec.rb
322
- - spec/commands/purchase_certificate_spec.rb
323
- - spec/commands/submit_certificate_spec.rb
324
- - spec/contact_spec.rb
313
+ - spec/ci/.dnsimple.test
314
+ - spec/commands/certificate_purchase_spec.rb
315
+ - spec/commands/certificate_submit_spec.rb
316
+ - spec/commands/record_create_spec.rb
317
+ - spec/commands/records_list_spec.rb
318
+ - spec/commands/service_add_spec.rb
319
+ - spec/dnsimple/certificate_spec.rb
325
320
  - spec/dnsimple/client_spec.rb
326
- - spec/domain_spec.rb
327
- - spec/extended_attributes_spec.rb
328
- - spec/record_spec.rb
321
+ - spec/dnsimple/contact_spec.rb
322
+ - spec/dnsimple/domain_spec.rb
323
+ - spec/dnsimple/extended_attributes_spec.rb
324
+ - spec/dnsimple/record_spec.rb
325
+ - spec/dnsimple/template_spec.rb
326
+ - spec/dnsimple/user_spec.rb
329
327
  - spec/spec_helper.rb
330
- - spec/template_spec.rb
331
- - spec/user_spec.rb
328
+ has_rdoc: