xcapclient 1.2.2 → 1.3.1
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/README.rdoc +5 -5
- data/lib/xcapclient.rb +17 -24
- data/lib/xcapclient/application.rb +60 -60
- data/lib/xcapclient/client.rb +719 -698
- data/lib/xcapclient/document.rb +51 -38
- data/lib/xcapclient/errors.rb +21 -21
- data/lib/xcapclient/version.rb +17 -0
- data/test/PRES_RULES_EXAMPLE.xml +46 -46
- data/test/test_unit_01.rb +322 -322
- metadata +4 -5
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcapclient
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "I\xC3\xB1aki Baz Castillo"
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-02-05 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -22,9 +22,7 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: "0"
|
24
24
|
version:
|
25
|
-
description: "
|
26
|
-
\t\t\n\
|
27
|
-
\t\tRuby xcapclient library implements the XCAP protocol in client side, allowing the applications to get, store, modify and delete XML documents in the server.'\n"
|
25
|
+
description: " XCAP (RFC 4825) is a protocol on top of HTTP which allows a client (usually a VoIP/SIP device) to manipulate the contents of Presence Information Data Format (PIDF) based presence documents. These documents are stored in a server in XML format.\n\n Ruby xcapclient library implements the XCAP protocol in client side, allowing the applications to get, store, modify and delete XML documents in the server.'\n"
|
28
26
|
email: ibc@aliax.net
|
29
27
|
executables: []
|
30
28
|
|
@@ -39,6 +37,7 @@ files:
|
|
39
37
|
- LICENSE.txt
|
40
38
|
- lib/xcapclient/client.rb
|
41
39
|
- lib/xcapclient.rb
|
40
|
+
- lib/xcapclient/version.rb
|
42
41
|
- lib/xcapclient/errors.rb
|
43
42
|
- lib/xcapclient/application.rb
|
44
43
|
- lib/xcapclient/document.rb
|