xcapclient 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ module XCAPClient
2
2
 
3
3
  MAJOR = 1
4
4
  MINOR = 4
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  VERSION = [MAJOR, MINOR, TINY].join('.')
8
8
 
@@ -54,6 +54,7 @@ class TestXCAPClient < Test::Unit::TestCase
54
54
  }
55
55
 
56
56
  @client = Client.new(xcap_conf, xcap_apps)
57
+ @client.application("pres-rules").add_document("index")
57
58
  @client.application("pres-rules").document.plain = PRES_RULES
58
59
 
59
60
  @doc = @client.application("pres-rules").document
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcapclient
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 4
8
+ - 1
9
+ version: 1.4.1
5
10
  platform: ruby
6
11
  authors:
7
12
  - "I\xC3\xB1aki Baz Castillo"
@@ -9,19 +14,22 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-02-12 00:00:00 +01:00
17
+ date: 2010-12-09 00:00:00 +01:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: httpclient
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
20
25
  requirements:
21
26
  - - ">="
22
27
  - !ruby/object:Gem::Version
28
+ segments:
29
+ - 0
23
30
  version: "0"
24
- version:
31
+ type: :runtime
32
+ version_requirements: *id001
25
33
  description: XCAP (RFC 4825) is a protocol on top of HTTP allowing a client (usually built within a SIP user agent) to manipulate the content of XML documents stored in a server. These documents represent per user buddy list, presence authorization policy, media content (i.e. user avatar) and other kind of features.Ruby XCAPClient library implements the XCAP protocol in client side, allowing the application to get, store, modify and delete XML documents (totally or partially) in the server.
26
34
  email: ibc@aliax.net
27
35
  executables: []
@@ -44,6 +52,7 @@ files:
44
52
  - test/PRES_RULES_EXAMPLE.xml
45
53
  - README.rdoc
46
54
  - ERRORS.rdoc
55
+ - test/test_unit_01.rb
47
56
  has_rdoc: true
48
57
  homepage: http://dev.sipdoc.net/projects/ruby-xcapclient/wiki/
49
58
  licenses: []
@@ -57,21 +66,27 @@ rdoc_options:
57
66
  require_paths:
58
67
  - lib
59
68
  required_ruby_version: !ruby/object:Gem::Requirement
69
+ none: false
60
70
  requirements:
61
71
  - - ">="
62
72
  - !ruby/object:Gem::Version
73
+ segments:
74
+ - 1
75
+ - 8
76
+ - 1
63
77
  version: 1.8.1
64
- version:
65
78
  required_rubygems_version: !ruby/object:Gem::Requirement
79
+ none: false
66
80
  requirements:
67
81
  - - ">="
68
82
  - !ruby/object:Gem::Version
83
+ segments:
84
+ - 0
69
85
  version: "0"
70
- version:
71
86
  requirements: []
72
87
 
73
88
  rubyforge_project: xcapclient
74
- rubygems_version: 1.3.5
89
+ rubygems_version: 1.3.7
75
90
  signing_key:
76
91
  specification_version: 3
77
92
  summary: XCAP client library