nominet-epp 0.0.10 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
data/.yardopts ADDED
@@ -0,0 +1,2 @@
1
+ lib/**/*.rb -
2
+ History.rdoc LICENSE
data/History.rdoc ADDED
@@ -0,0 +1,74 @@
1
+ = NominetEPP History
2
+
3
+ === 0.0.11 / 2011-05-17
4
+
5
+ * Remove setting account:contact[type] attribute as this is not in the schema
6
+
7
+ === 0.0.10 / 2011-05-04
8
+
9
+ * Fix syntax error in helpers.rb
10
+
11
+ === 0.0.9 / 2011-05-04
12
+
13
+ * Correct implementation of Update Operation for domain, account and contact to send
14
+ the correct sequence of XML elements
15
+
16
+ === 0.0.8 / 2011-05-03
17
+
18
+ * Amend account:contact elements in Create operation to ensure order attribute range
19
+ * Fix sequencing of elements in account:addr block
20
+ * Fix sequencing of elements in contact:create block
21
+ * Fix sequencing of elements in account:create block
22
+ * Enforce the correct element sequencing for the domain:create operation
23
+
24
+ === 0.0.7 / 2011-04-21
25
+
26
+ * Yank v0.0.6 and bump version to fix bug introduced in v0.0.6
27
+
28
+ === 0.0.6 / 2011-04-21
29
+
30
+ * Fix "Command Syntax Error" response for Create operation with "2y" style periods
31
+
32
+ === 0.0.5 / 2011-02-24
33
+
34
+ * Many bug fixes in Create operation
35
+ * Support for using `host:update` to modify name server glue information.
36
+
37
+ === 0.0.4 / 2011-01-31
38
+
39
+ * Operations now cache their responses, accessible through `Client#last_response`
40
+ * Last response messages are available through `Client#last_message`
41
+
42
+ === 0.0.3 / 2011-01-17
43
+
44
+ * Tweak how #poll method works w.r.t blocks
45
+
46
+ === 0.0.2 / 2011-01-07
47
+
48
+ * Add Documentation
49
+ * Support the 'abuse-limit' on Nominet check operation
50
+ * Fix issue with info operation XML response parsing
51
+
52
+ === 0.0.1 / 2010-05-26
53
+
54
+ * Add support for 'none' and 'all' options on list operation
55
+ * Fix bugs in info operation for account objects
56
+ * Improve handling of XML namespaces and schema locations
57
+
58
+ === 0.0.0 / 2010-05-25
59
+
60
+ * Initial release
61
+ * Supports the following operations
62
+ * Create
63
+ * Delete
64
+ * Fork
65
+ * Hello
66
+ * Info
67
+ * List
68
+ * Lock
69
+ * Merge
70
+ * Poll
71
+ * Transfer
72
+ * Unlock
73
+ * Unrenew
74
+ * Update
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.10
1
+ 0.0.11
@@ -135,7 +135,6 @@ module NominetEPP
135
135
 
136
136
  XML::Node.new('contact', nil, ns).tap do |node|
137
137
  node['order'] = contact.delete(:order).to_s if contact.has_key?(:order)
138
- node['type'] = 'admin'
139
138
 
140
139
  node << contact_to_xml(contact)
141
140
  end
data/nominet-epp.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{nominet-epp}
8
- s.version = "0.0.10"
8
+ s.version = "0.0.11"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Geoff Garside"]
12
- s.date = %q{2011-05-04}
12
+ s.date = %q{2011-05-17}
13
13
  s.description = %q{Client for communicating with the Nominet EPP}
14
14
  s.email = %q{geoff@geoffgarside.co.uk}
15
15
  s.extra_rdoc_files = [
@@ -17,8 +17,8 @@ Gem::Specification.new do |s|
17
17
  "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
- ".document",
21
- "History.md",
20
+ ".yardopts",
21
+ "History.rdoc",
22
22
  "LICENSE",
23
23
  "README.rdoc",
24
24
  "Rakefile",
@@ -49,10 +49,6 @@ Gem::Specification.new do |s|
49
49
  s.require_paths = ["lib"]
50
50
  s.rubygems_version = %q{1.7.2}
51
51
  s.summary = %q{Nominet EPP (Extensible Provisioning Protocol) Client}
52
- s.test_files = [
53
- "test/helper.rb",
54
- "test/test_nominet-epp.rb"
55
- ]
56
52
 
57
53
  if s.respond_to? :specification_version then
58
54
  s.specification_version = 3
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nominet-epp
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 10
10
- version: 0.0.10
9
+ - 11
10
+ version: 0.0.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - Geoff Garside
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-05-04 00:00:00 Z
18
+ date: 2011-05-17 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: shoulda
@@ -69,8 +69,8 @@ extra_rdoc_files:
69
69
  - LICENSE
70
70
  - README.rdoc
71
71
  files:
72
- - .document
73
- - History.md
72
+ - .yardopts
73
+ - History.rdoc
74
74
  - LICENSE
75
75
  - README.rdoc
76
76
  - Rakefile
@@ -129,6 +129,5 @@ rubygems_version: 1.7.2
129
129
  signing_key:
130
130
  specification_version: 3
131
131
  summary: Nominet EPP (Extensible Provisioning Protocol) Client
132
- test_files:
133
- - test/helper.rb
134
- - test/test_nominet-epp.rb
132
+ test_files: []
133
+
data/.document DELETED
@@ -1,5 +0,0 @@
1
- README.rdoc
2
- lib/**/*.rb
3
- bin/*
4
- features/**/*.feature
5
- LICENSE
data/History.md DELETED
@@ -1,80 +0,0 @@
1
-
2
- 0.0.10 / 2011-05-04
3
- ===================
4
-
5
- * Fix syntax error in helpers.rb
6
-
7
- 0.0.9 / 2011-05-04
8
- ==================
9
-
10
- * Correct implementation of Update Operation for domain, account and contact to send
11
- the correct sequence of XML elements
12
-
13
- 0.0.8 / 2011-05-03
14
- ==================
15
-
16
- * Amend account:contact elements in Create operation to ensure order attribute range
17
- * Fix sequencing of elements in account:addr block
18
- * Fix sequencing of elements in contact:create block
19
- * Fix sequencing of elements in account:create block
20
- * Enforce the correct element sequencing for the domain:create operation
21
-
22
- 0.0.7 / 2011-04-21
23
- ==================
24
-
25
- * Yank v0.0.6 and bump version to fix bug introduced in v0.0.6
26
-
27
- 0.0.6 / 2011-04-21
28
- ==================
29
-
30
- * Fix "Command Syntax Error" response for Create operation with "2y" style periods
31
-
32
- 0.0.5 / 2011-02-24
33
- ==================
34
-
35
- * Many bug fixes in Create operation
36
- * Support for using `host:update` to modify name server glue information.
37
-
38
- 0.0.4 / 2011-01-31
39
- ==================
40
-
41
- * Operations now cache their responses, accessible through `Client#last_response`
42
- * Last response messages are available through `Client#last_message`
43
-
44
- 0.0.3 / 2011-01-17
45
- ==================
46
-
47
- * Tweak how #poll method works w.r.t blocks
48
-
49
- 0.0.2 / 2011-01-07
50
- ==================
51
-
52
- * Add Documentation
53
- * Support the 'abuse-limit' on Nominet check operation
54
- * Fix issue with info operation XML response parsing
55
-
56
- 0.0.1 / 2010-05-26
57
- ==================
58
-
59
- * Add support for 'none' and 'all' options on list operation
60
- * Fix bugs in info operation for account objects
61
- * Improve handling of XML namespaces and schema locations
62
-
63
- 0.0.0 / 2010-05-25
64
- ==================
65
-
66
- * Initial release
67
- * Supports the following operations
68
- * Create
69
- * Delete
70
- * Fork
71
- * Hello
72
- * Info
73
- * List
74
- * Lock
75
- * Merge
76
- * Poll
77
- * Transfer
78
- * Unlock
79
- * Unrenew
80
- * Update