epp-client 0.0.3 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/.simplecov +16 -0
- data/.travis.yml +11 -0
- data/.yardopts +4 -0
- data/Gemfile +20 -0
- data/Gemfile.lock +51 -0
- data/LICENSE +1 -1
- data/README.md +75 -0
- data/Rakefile +2 -37
- data/epp-client.gemspec +15 -58
- data/gemfiles/Gemfile.ruby18 +13 -0
- data/lib/epp-client.rb +94 -7
- data/lib/epp-client/client.rb +117 -20
- data/lib/epp-client/commands/check.rb +11 -0
- data/lib/epp-client/commands/command.rb +24 -0
- data/lib/epp-client/commands/create.rb +11 -0
- data/lib/epp-client/commands/delete.rb +11 -0
- data/lib/epp-client/commands/info.rb +11 -0
- data/lib/epp-client/commands/login.rb +40 -0
- data/lib/epp-client/commands/logout.rb +11 -0
- data/lib/epp-client/commands/poll.rb +28 -0
- data/lib/epp-client/commands/read_write_command.rb +18 -0
- data/lib/epp-client/commands/renew.rb +11 -0
- data/lib/epp-client/commands/transfer.rb +25 -0
- data/lib/epp-client/commands/update.rb +11 -0
- data/lib/epp-client/contact/check.rb +23 -0
- data/lib/epp-client/contact/check_response.rb +22 -0
- data/lib/epp-client/contact/command.rb +87 -0
- data/lib/epp-client/contact/create.rb +34 -0
- data/lib/epp-client/contact/create_response.rb +14 -0
- data/lib/epp-client/contact/delete.rb +21 -0
- data/lib/epp-client/contact/delete_response.rb +9 -0
- data/lib/epp-client/contact/info.rb +21 -0
- data/lib/epp-client/contact/info_response.rb +74 -0
- data/lib/epp-client/contact/response.rb +34 -0
- data/lib/epp-client/contact/transfer.rb +21 -0
- data/lib/epp-client/contact/transfer_response.rb +26 -0
- data/lib/epp-client/contact/update.rb +80 -0
- data/lib/epp-client/contact/update_response.rb +9 -0
- data/lib/epp-client/domain/check.rb +23 -0
- data/lib/epp-client/domain/check_response.rb +22 -0
- data/lib/epp-client/domain/command.rb +92 -0
- data/lib/epp-client/domain/create.rb +49 -0
- data/lib/epp-client/domain/create_response.rb +17 -0
- data/lib/epp-client/domain/delete.rb +21 -0
- data/lib/epp-client/domain/delete_response.rb +9 -0
- data/lib/epp-client/domain/info.rb +21 -0
- data/lib/epp-client/domain/info_response.rb +66 -0
- data/lib/epp-client/domain/renew.rb +34 -0
- data/lib/epp-client/domain/renew_response.rb +14 -0
- data/lib/epp-client/domain/response.rb +34 -0
- data/lib/epp-client/domain/transfer.rb +27 -0
- data/lib/epp-client/domain/transfer_response.rb +29 -0
- data/lib/epp-client/domain/update.rb +81 -0
- data/lib/epp-client/domain/update_response.rb +9 -0
- data/lib/epp-client/host/check.rb +23 -0
- data/lib/epp-client/host/check_response.rb +22 -0
- data/lib/epp-client/host/command.rb +47 -0
- data/lib/epp-client/host/create.rb +24 -0
- data/lib/epp-client/host/create_response.rb +14 -0
- data/lib/epp-client/host/delete.rb +21 -0
- data/lib/epp-client/host/delete_response.rb +9 -0
- data/lib/epp-client/host/info.rb +21 -0
- data/lib/epp-client/host/info_response.rb +42 -0
- data/lib/epp-client/host/response.rb +34 -0
- data/lib/epp-client/host/update.rb +76 -0
- data/lib/epp-client/host/update_response.rb +9 -0
- data/lib/epp-client/request.rb +29 -74
- data/lib/epp-client/requests/abstract.rb +30 -0
- data/lib/epp-client/requests/command.rb +28 -0
- data/lib/epp-client/requests/extension.rb +28 -0
- data/lib/epp-client/requests/hello.rb +12 -0
- data/lib/epp-client/response.rb +45 -8
- data/lib/epp-client/response_helper.rb +25 -0
- data/lib/epp-client/server.rb +167 -63
- data/lib/epp-client/testing.rb +59 -0
- data/lib/epp-client/version.rb +3 -0
- data/lib/epp-client/xml_helper.rb +71 -0
- data/test/commands/test_check_command.rb +33 -0
- data/test/commands/test_create_command.rb +53 -0
- data/test/commands/test_delete_command.rb +28 -0
- data/test/commands/test_info_command.rb +28 -0
- data/test/commands/test_login_command.rb +56 -0
- data/test/commands/test_logout_command.rb +22 -0
- data/test/commands/test_poll_command.rb +54 -0
- data/test/commands/test_renew_command.rb +39 -0
- data/test/commands/test_transfer_command.rb +37 -0
- data/test/commands/test_update_command.rb +60 -0
- data/test/contact/test_contact_check.rb +33 -0
- data/test/contact/test_contact_check_response.rb +38 -0
- data/test/contact/test_contact_create.rb +70 -0
- data/test/contact/test_contact_create_response.rb +33 -0
- data/test/contact/test_contact_delete.rb +28 -0
- data/test/contact/test_contact_delete_response.rb +23 -0
- data/test/contact/test_contact_info.rb +28 -0
- data/test/contact/test_contact_info_response.rb +100 -0
- data/test/contact/test_contact_transfer.rb +28 -0
- data/test/contact/test_contact_transfer_response.rb +100 -0
- data/test/contact/test_contact_update.rb +83 -0
- data/test/contact/test_contact_update_response.rb +23 -0
- data/test/domain/test_domain_check.rb +33 -0
- data/test/domain/test_domain_check_response.rb +38 -0
- data/test/domain/test_domain_create.rb +53 -0
- data/test/domain/test_domain_create_response.rb +39 -0
- data/test/domain/test_domain_delete.rb +28 -0
- data/test/domain/test_domain_delete_response.rb +23 -0
- data/test/domain/test_domain_info.rb +28 -0
- data/test/domain/test_domain_info_response.rb +107 -0
- data/test/domain/test_domain_renew.rb +39 -0
- data/test/domain/test_domain_renew_response.rb +32 -0
- data/test/domain/test_domain_transfer.rb +37 -0
- data/test/domain/test_domain_transfer_response.rb +112 -0
- data/test/domain/test_domain_update.rb +73 -0
- data/test/domain/test_domain_update_response.rb +23 -0
- data/test/fixtures/responses/contact/check.xml +27 -0
- data/test/fixtures/responses/contact/create.xml +19 -0
- data/test/fixtures/responses/contact/delete.xml +12 -0
- data/test/fixtures/responses/contact/info.xml +49 -0
- data/test/fixtures/responses/contact/transfer-query.xml +23 -0
- data/test/fixtures/responses/contact/transfer-request.xml +23 -0
- data/test/fixtures/responses/contact/update.xml +12 -0
- data/test/fixtures/responses/domain/check.xml +27 -0
- data/test/fixtures/responses/domain/create.xml +20 -0
- data/test/fixtures/responses/domain/delete.xml +12 -0
- data/test/fixtures/responses/domain/info-no-exDate.xml +38 -0
- data/test/fixtures/responses/domain/info.xml +39 -0
- data/test/fixtures/responses/domain/renew.xml +19 -0
- data/test/fixtures/responses/domain/transfer-query.xml +24 -0
- data/test/fixtures/responses/domain/transfer-request.xml +24 -0
- data/test/fixtures/responses/domain/update.xml +12 -0
- data/test/fixtures/responses/greeting.xml +25 -0
- data/test/fixtures/responses/host/check.xml +27 -0
- data/test/fixtures/responses/host/create.xml +19 -0
- data/test/fixtures/responses/host/delete.xml +12 -0
- data/test/fixtures/responses/host/info.xml +30 -0
- data/test/fixtures/responses/host/update.xml +12 -0
- data/test/helper.rb +89 -0
- data/test/host/test_host_check.rb +33 -0
- data/test/host/test_host_check_response.rb +38 -0
- data/test/host/test_host_create.rb +37 -0
- data/test/host/test_host_create_response.rb +33 -0
- data/test/host/test_host_delete.rb +28 -0
- data/test/host/test_host_delete_response.rb +23 -0
- data/test/host/test_host_info.rb +28 -0
- data/test/host/test_host_info_response.rb +72 -0
- data/test/host/test_host_update.rb +68 -0
- data/test/host/test_host_update_response.rb +23 -0
- data/test/requests/test_command_request.rb +16 -0
- data/test/requests/test_extension_request.rb +55 -0
- data/test/requests/test_hello_request.rb +15 -0
- data/test/support/schemas/all.xsd +21 -0
- data/test/support/schemas/contact-1.0.xsd +387 -0
- data/test/support/schemas/domain-1.0.xsd +432 -0
- data/test/support/schemas/epp-1.0.xsd +403 -0
- data/test/support/schemas/eppcom-1.0.xsd +93 -0
- data/test/support/schemas/host-1.0.xsd +240 -0
- data/test/test_client.rb +54 -0
- data/test/test_request.rb +15 -0
- data/test/test_server.rb +57 -0
- metadata +270 -91
- data/.document +0 -5
- data/README.rdoc +0 -17
- data/VERSION +0 -1
- data/lib/epp-client/hello_request.rb +0 -9
- data/test/test_epp-client.rb +0 -7
metadata
CHANGED
@@ -1,123 +1,302 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: epp-client
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 3
|
10
|
-
version: 0.0.3
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Geoff Garside
|
14
8
|
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
21
|
-
name: shoulda
|
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: :development
|
33
|
-
version_requirements: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: yard
|
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
|
11
|
+
date: 2014-06-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
49
14
|
name: libxml-ruby
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
- !ruby/object:Gem::Version
|
56
|
-
hash: 3
|
57
|
-
segments:
|
58
|
-
- 0
|
59
|
-
version: "0"
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
60
20
|
type: :runtime
|
61
|
-
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
62
27
|
description: Client for communicating with EPP services
|
63
|
-
email:
|
28
|
+
email:
|
29
|
+
- geoff@geoffgarside.co.uk
|
64
30
|
executables: []
|
65
|
-
|
66
31
|
extensions: []
|
67
|
-
|
68
|
-
extra_rdoc_files:
|
32
|
+
extra_rdoc_files:
|
69
33
|
- LICENSE
|
70
|
-
- README.
|
71
|
-
files:
|
72
|
-
- .
|
34
|
+
- README.md
|
35
|
+
files:
|
36
|
+
- .gitignore
|
37
|
+
- .simplecov
|
38
|
+
- .travis.yml
|
39
|
+
- .yardopts
|
40
|
+
- Gemfile
|
41
|
+
- Gemfile.lock
|
73
42
|
- LICENSE
|
74
|
-
- README.
|
43
|
+
- README.md
|
75
44
|
- Rakefile
|
76
|
-
- VERSION
|
77
45
|
- epp-client.gemspec
|
46
|
+
- gemfiles/Gemfile.ruby18
|
78
47
|
- lib/epp-client.rb
|
79
48
|
- lib/epp-client/client.rb
|
80
|
-
- lib/epp-client/
|
49
|
+
- lib/epp-client/commands/check.rb
|
50
|
+
- lib/epp-client/commands/command.rb
|
51
|
+
- lib/epp-client/commands/create.rb
|
52
|
+
- lib/epp-client/commands/delete.rb
|
53
|
+
- lib/epp-client/commands/info.rb
|
54
|
+
- lib/epp-client/commands/login.rb
|
55
|
+
- lib/epp-client/commands/logout.rb
|
56
|
+
- lib/epp-client/commands/poll.rb
|
57
|
+
- lib/epp-client/commands/read_write_command.rb
|
58
|
+
- lib/epp-client/commands/renew.rb
|
59
|
+
- lib/epp-client/commands/transfer.rb
|
60
|
+
- lib/epp-client/commands/update.rb
|
61
|
+
- lib/epp-client/contact/check.rb
|
62
|
+
- lib/epp-client/contact/check_response.rb
|
63
|
+
- lib/epp-client/contact/command.rb
|
64
|
+
- lib/epp-client/contact/create.rb
|
65
|
+
- lib/epp-client/contact/create_response.rb
|
66
|
+
- lib/epp-client/contact/delete.rb
|
67
|
+
- lib/epp-client/contact/delete_response.rb
|
68
|
+
- lib/epp-client/contact/info.rb
|
69
|
+
- lib/epp-client/contact/info_response.rb
|
70
|
+
- lib/epp-client/contact/response.rb
|
71
|
+
- lib/epp-client/contact/transfer.rb
|
72
|
+
- lib/epp-client/contact/transfer_response.rb
|
73
|
+
- lib/epp-client/contact/update.rb
|
74
|
+
- lib/epp-client/contact/update_response.rb
|
75
|
+
- lib/epp-client/domain/check.rb
|
76
|
+
- lib/epp-client/domain/check_response.rb
|
77
|
+
- lib/epp-client/domain/command.rb
|
78
|
+
- lib/epp-client/domain/create.rb
|
79
|
+
- lib/epp-client/domain/create_response.rb
|
80
|
+
- lib/epp-client/domain/delete.rb
|
81
|
+
- lib/epp-client/domain/delete_response.rb
|
82
|
+
- lib/epp-client/domain/info.rb
|
83
|
+
- lib/epp-client/domain/info_response.rb
|
84
|
+
- lib/epp-client/domain/renew.rb
|
85
|
+
- lib/epp-client/domain/renew_response.rb
|
86
|
+
- lib/epp-client/domain/response.rb
|
87
|
+
- lib/epp-client/domain/transfer.rb
|
88
|
+
- lib/epp-client/domain/transfer_response.rb
|
89
|
+
- lib/epp-client/domain/update.rb
|
90
|
+
- lib/epp-client/domain/update_response.rb
|
91
|
+
- lib/epp-client/host/check.rb
|
92
|
+
- lib/epp-client/host/check_response.rb
|
93
|
+
- lib/epp-client/host/command.rb
|
94
|
+
- lib/epp-client/host/create.rb
|
95
|
+
- lib/epp-client/host/create_response.rb
|
96
|
+
- lib/epp-client/host/delete.rb
|
97
|
+
- lib/epp-client/host/delete_response.rb
|
98
|
+
- lib/epp-client/host/info.rb
|
99
|
+
- lib/epp-client/host/info_response.rb
|
100
|
+
- lib/epp-client/host/response.rb
|
101
|
+
- lib/epp-client/host/update.rb
|
102
|
+
- lib/epp-client/host/update_response.rb
|
81
103
|
- lib/epp-client/old_server.rb
|
82
104
|
- lib/epp-client/request.rb
|
105
|
+
- lib/epp-client/requests/abstract.rb
|
106
|
+
- lib/epp-client/requests/command.rb
|
107
|
+
- lib/epp-client/requests/extension.rb
|
108
|
+
- lib/epp-client/requests/hello.rb
|
83
109
|
- lib/epp-client/response.rb
|
84
110
|
- lib/epp-client/response_error.rb
|
111
|
+
- lib/epp-client/response_helper.rb
|
85
112
|
- lib/epp-client/server.rb
|
113
|
+
- lib/epp-client/testing.rb
|
114
|
+
- lib/epp-client/version.rb
|
115
|
+
- lib/epp-client/xml_helper.rb
|
116
|
+
- test/commands/test_check_command.rb
|
117
|
+
- test/commands/test_create_command.rb
|
118
|
+
- test/commands/test_delete_command.rb
|
119
|
+
- test/commands/test_info_command.rb
|
120
|
+
- test/commands/test_login_command.rb
|
121
|
+
- test/commands/test_logout_command.rb
|
122
|
+
- test/commands/test_poll_command.rb
|
123
|
+
- test/commands/test_renew_command.rb
|
124
|
+
- test/commands/test_transfer_command.rb
|
125
|
+
- test/commands/test_update_command.rb
|
126
|
+
- test/contact/test_contact_check.rb
|
127
|
+
- test/contact/test_contact_check_response.rb
|
128
|
+
- test/contact/test_contact_create.rb
|
129
|
+
- test/contact/test_contact_create_response.rb
|
130
|
+
- test/contact/test_contact_delete.rb
|
131
|
+
- test/contact/test_contact_delete_response.rb
|
132
|
+
- test/contact/test_contact_info.rb
|
133
|
+
- test/contact/test_contact_info_response.rb
|
134
|
+
- test/contact/test_contact_transfer.rb
|
135
|
+
- test/contact/test_contact_transfer_response.rb
|
136
|
+
- test/contact/test_contact_update.rb
|
137
|
+
- test/contact/test_contact_update_response.rb
|
138
|
+
- test/domain/test_domain_check.rb
|
139
|
+
- test/domain/test_domain_check_response.rb
|
140
|
+
- test/domain/test_domain_create.rb
|
141
|
+
- test/domain/test_domain_create_response.rb
|
142
|
+
- test/domain/test_domain_delete.rb
|
143
|
+
- test/domain/test_domain_delete_response.rb
|
144
|
+
- test/domain/test_domain_info.rb
|
145
|
+
- test/domain/test_domain_info_response.rb
|
146
|
+
- test/domain/test_domain_renew.rb
|
147
|
+
- test/domain/test_domain_renew_response.rb
|
148
|
+
- test/domain/test_domain_transfer.rb
|
149
|
+
- test/domain/test_domain_transfer_response.rb
|
150
|
+
- test/domain/test_domain_update.rb
|
151
|
+
- test/domain/test_domain_update_response.rb
|
152
|
+
- test/fixtures/responses/contact/check.xml
|
153
|
+
- test/fixtures/responses/contact/create.xml
|
154
|
+
- test/fixtures/responses/contact/delete.xml
|
155
|
+
- test/fixtures/responses/contact/info.xml
|
156
|
+
- test/fixtures/responses/contact/transfer-query.xml
|
157
|
+
- test/fixtures/responses/contact/transfer-request.xml
|
158
|
+
- test/fixtures/responses/contact/update.xml
|
159
|
+
- test/fixtures/responses/domain/check.xml
|
160
|
+
- test/fixtures/responses/domain/create.xml
|
161
|
+
- test/fixtures/responses/domain/delete.xml
|
162
|
+
- test/fixtures/responses/domain/info-no-exDate.xml
|
163
|
+
- test/fixtures/responses/domain/info.xml
|
164
|
+
- test/fixtures/responses/domain/renew.xml
|
165
|
+
- test/fixtures/responses/domain/transfer-query.xml
|
166
|
+
- test/fixtures/responses/domain/transfer-request.xml
|
167
|
+
- test/fixtures/responses/domain/update.xml
|
168
|
+
- test/fixtures/responses/greeting.xml
|
169
|
+
- test/fixtures/responses/host/check.xml
|
170
|
+
- test/fixtures/responses/host/create.xml
|
171
|
+
- test/fixtures/responses/host/delete.xml
|
172
|
+
- test/fixtures/responses/host/info.xml
|
173
|
+
- test/fixtures/responses/host/update.xml
|
86
174
|
- test/helper.rb
|
87
|
-
- test/
|
88
|
-
|
175
|
+
- test/host/test_host_check.rb
|
176
|
+
- test/host/test_host_check_response.rb
|
177
|
+
- test/host/test_host_create.rb
|
178
|
+
- test/host/test_host_create_response.rb
|
179
|
+
- test/host/test_host_delete.rb
|
180
|
+
- test/host/test_host_delete_response.rb
|
181
|
+
- test/host/test_host_info.rb
|
182
|
+
- test/host/test_host_info_response.rb
|
183
|
+
- test/host/test_host_update.rb
|
184
|
+
- test/host/test_host_update_response.rb
|
185
|
+
- test/requests/test_command_request.rb
|
186
|
+
- test/requests/test_extension_request.rb
|
187
|
+
- test/requests/test_hello_request.rb
|
188
|
+
- test/support/schemas/all.xsd
|
189
|
+
- test/support/schemas/contact-1.0.xsd
|
190
|
+
- test/support/schemas/domain-1.0.xsd
|
191
|
+
- test/support/schemas/epp-1.0.xsd
|
192
|
+
- test/support/schemas/eppcom-1.0.xsd
|
193
|
+
- test/support/schemas/host-1.0.xsd
|
194
|
+
- test/test_client.rb
|
195
|
+
- test/test_request.rb
|
196
|
+
- test/test_server.rb
|
197
|
+
homepage: https://github.com/m247/epp-client
|
89
198
|
licenses: []
|
90
|
-
|
199
|
+
metadata: {}
|
91
200
|
post_install_message:
|
92
201
|
rdoc_options: []
|
93
|
-
|
94
|
-
require_paths:
|
202
|
+
require_paths:
|
95
203
|
- lib
|
96
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
none: false
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
hash: 3
|
111
|
-
segments:
|
112
|
-
- 0
|
113
|
-
version: "0"
|
204
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - '>='
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
210
|
+
requirements:
|
211
|
+
- - '>='
|
212
|
+
- !ruby/object:Gem::Version
|
213
|
+
version: '0'
|
114
214
|
requirements: []
|
115
|
-
|
116
215
|
rubyforge_project:
|
117
|
-
rubygems_version:
|
216
|
+
rubygems_version: 2.0.14
|
118
217
|
signing_key:
|
119
|
-
specification_version:
|
218
|
+
specification_version: 4
|
120
219
|
summary: EPP (Extensible Provisioning Protocol) Client
|
121
|
-
test_files:
|
220
|
+
test_files:
|
221
|
+
- test/commands/test_check_command.rb
|
222
|
+
- test/commands/test_create_command.rb
|
223
|
+
- test/commands/test_delete_command.rb
|
224
|
+
- test/commands/test_info_command.rb
|
225
|
+
- test/commands/test_login_command.rb
|
226
|
+
- test/commands/test_logout_command.rb
|
227
|
+
- test/commands/test_poll_command.rb
|
228
|
+
- test/commands/test_renew_command.rb
|
229
|
+
- test/commands/test_transfer_command.rb
|
230
|
+
- test/commands/test_update_command.rb
|
231
|
+
- test/contact/test_contact_check.rb
|
232
|
+
- test/contact/test_contact_check_response.rb
|
233
|
+
- test/contact/test_contact_create.rb
|
234
|
+
- test/contact/test_contact_create_response.rb
|
235
|
+
- test/contact/test_contact_delete.rb
|
236
|
+
- test/contact/test_contact_delete_response.rb
|
237
|
+
- test/contact/test_contact_info.rb
|
238
|
+
- test/contact/test_contact_info_response.rb
|
239
|
+
- test/contact/test_contact_transfer.rb
|
240
|
+
- test/contact/test_contact_transfer_response.rb
|
241
|
+
- test/contact/test_contact_update.rb
|
242
|
+
- test/contact/test_contact_update_response.rb
|
243
|
+
- test/domain/test_domain_check.rb
|
244
|
+
- test/domain/test_domain_check_response.rb
|
245
|
+
- test/domain/test_domain_create.rb
|
246
|
+
- test/domain/test_domain_create_response.rb
|
247
|
+
- test/domain/test_domain_delete.rb
|
248
|
+
- test/domain/test_domain_delete_response.rb
|
249
|
+
- test/domain/test_domain_info.rb
|
250
|
+
- test/domain/test_domain_info_response.rb
|
251
|
+
- test/domain/test_domain_renew.rb
|
252
|
+
- test/domain/test_domain_renew_response.rb
|
253
|
+
- test/domain/test_domain_transfer.rb
|
254
|
+
- test/domain/test_domain_transfer_response.rb
|
255
|
+
- test/domain/test_domain_update.rb
|
256
|
+
- test/domain/test_domain_update_response.rb
|
257
|
+
- test/fixtures/responses/contact/check.xml
|
258
|
+
- test/fixtures/responses/contact/create.xml
|
259
|
+
- test/fixtures/responses/contact/delete.xml
|
260
|
+
- test/fixtures/responses/contact/info.xml
|
261
|
+
- test/fixtures/responses/contact/transfer-query.xml
|
262
|
+
- test/fixtures/responses/contact/transfer-request.xml
|
263
|
+
- test/fixtures/responses/contact/update.xml
|
264
|
+
- test/fixtures/responses/domain/check.xml
|
265
|
+
- test/fixtures/responses/domain/create.xml
|
266
|
+
- test/fixtures/responses/domain/delete.xml
|
267
|
+
- test/fixtures/responses/domain/info-no-exDate.xml
|
268
|
+
- test/fixtures/responses/domain/info.xml
|
269
|
+
- test/fixtures/responses/domain/renew.xml
|
270
|
+
- test/fixtures/responses/domain/transfer-query.xml
|
271
|
+
- test/fixtures/responses/domain/transfer-request.xml
|
272
|
+
- test/fixtures/responses/domain/update.xml
|
273
|
+
- test/fixtures/responses/greeting.xml
|
274
|
+
- test/fixtures/responses/host/check.xml
|
275
|
+
- test/fixtures/responses/host/create.xml
|
276
|
+
- test/fixtures/responses/host/delete.xml
|
277
|
+
- test/fixtures/responses/host/info.xml
|
278
|
+
- test/fixtures/responses/host/update.xml
|
122
279
|
- test/helper.rb
|
123
|
-
- test/
|
280
|
+
- test/host/test_host_check.rb
|
281
|
+
- test/host/test_host_check_response.rb
|
282
|
+
- test/host/test_host_create.rb
|
283
|
+
- test/host/test_host_create_response.rb
|
284
|
+
- test/host/test_host_delete.rb
|
285
|
+
- test/host/test_host_delete_response.rb
|
286
|
+
- test/host/test_host_info.rb
|
287
|
+
- test/host/test_host_info_response.rb
|
288
|
+
- test/host/test_host_update.rb
|
289
|
+
- test/host/test_host_update_response.rb
|
290
|
+
- test/requests/test_command_request.rb
|
291
|
+
- test/requests/test_extension_request.rb
|
292
|
+
- test/requests/test_hello_request.rb
|
293
|
+
- test/support/schemas/all.xsd
|
294
|
+
- test/support/schemas/contact-1.0.xsd
|
295
|
+
- test/support/schemas/domain-1.0.xsd
|
296
|
+
- test/support/schemas/epp-1.0.xsd
|
297
|
+
- test/support/schemas/eppcom-1.0.xsd
|
298
|
+
- test/support/schemas/host-1.0.xsd
|
299
|
+
- test/test_client.rb
|
300
|
+
- test/test_request.rb
|
301
|
+
- test/test_server.rb
|
302
|
+
has_rdoc:
|
data/.document
DELETED
data/README.rdoc
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
= epp-client
|
2
|
-
|
3
|
-
Description goes here.
|
4
|
-
|
5
|
-
== Note on Patches/Pull Requests
|
6
|
-
|
7
|
-
* Fork the project.
|
8
|
-
* Make your feature addition or bug fix.
|
9
|
-
* Add tests for it. This is important so I don't break it in a
|
10
|
-
future version unintentionally.
|
11
|
-
* Commit, do not mess with rakefile, version, or history.
|
12
|
-
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
-
* Send me a pull request. Bonus points for topic branches.
|
14
|
-
|
15
|
-
== Copyright
|
16
|
-
|
17
|
-
Copyright (c) 2010 Geoff Garside. See LICENSE for details.
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.0.3
|