cozaepp 0.1.3 → 0.1.4
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.
- data/CHANGELOG +6 -0
- data/lib/cozaepp.rb +2 -0
- data/lib/cozaepp/version.rb +1 -1
- metadata +3 -3
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Version 0.1.4
|
|
2
|
+
-:domainStatusText and :domainStatus in :resdata for info_domain()
|
|
3
|
+
|
|
4
|
+
Version 0.1.3
|
|
5
|
+
-Added transfer_reject and transfer_cancel
|
|
6
|
+
|
|
1
7
|
Version 0.1.2
|
|
2
8
|
-fixed update_contact and added availCode to check availability of domain
|
|
3
9
|
-added transfer_query() for legacy domains
|
data/lib/cozaepp.rb
CHANGED
|
@@ -250,6 +250,8 @@ module CozaEPP
|
|
|
250
250
|
infoDomain = {
|
|
251
251
|
:domainName => Hpricot::XML(resData.to_s).at("//epp:resData//domain:infData//domain:name/"),
|
|
252
252
|
:domainRoid => Hpricot::XML(resData.to_s).at("//epp:resData//domain:infData//domain:roid/"),
|
|
253
|
+
:domainStatusText => Hpricot::XML(resData.to_s).at("//epp:resData//domain:infData//domain:status/"),
|
|
254
|
+
:domainStatus => Hpricot::XML(resData.to_s).at("//epp:resData//domain:infData//domain:status")['s'],
|
|
253
255
|
:domainNs => Array.new,
|
|
254
256
|
:domainClID => Hpricot::XML(resData.to_s).at("//epp:resData//domain:infData//domain:clID/"),
|
|
255
257
|
:domainCrID => Hpricot::XML(resData.to_s).at("//epp:resData//domain:infData//domain:crID/"),
|
data/lib/cozaepp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cozaepp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-05-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: API to Uniforum's EPP service
|
|
15
15
|
email:
|
|
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
98
98
|
version: '0'
|
|
99
99
|
requirements: []
|
|
100
100
|
rubyforge_project:
|
|
101
|
-
rubygems_version: 1.8.
|
|
101
|
+
rubygems_version: 1.8.25
|
|
102
102
|
signing_key:
|
|
103
103
|
specification_version: 3
|
|
104
104
|
summary: API to Uniforum's EPP service
|