zimbra_wsdl 0.0.2
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/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +70 -0
- data/Rakefile +10 -0
- data/doc/ZPL.txt +492 -0
- data/doc/soap-admin.txt +2507 -0
- data/doc/soap-calendar.txt +1357 -0
- data/doc/soap-context-extension.txt +58 -0
- data/doc/soap-im.txt +570 -0
- data/doc/soap-mobile.txt +136 -0
- data/doc/soap-right.txt +806 -0
- data/doc/soap-waitset.txt +347 -0
- data/doc/soap-wiki.txt +290 -0
- data/doc/soap.txt +3554 -0
- data/examples/savon.rb +27 -0
- data/examples/zimbra_authentication_example.rb +3 -0
- data/lib/zimbra.wsdl +1144 -0
- data/lib/zimbra_wsdl/version.rb +3 -0
- data/lib/zimbra_wsdl.rb +19 -0
- data/spec/minitest_helper.rb +8 -0
- data/spec/zimbra_wsdl_spec.rb +11 -0
- data/zimbra_wsdl.gemspec +19 -0
- metadata +87 -0
data/lib/zimbra_wsdl.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
require "zimbra_wsdl/version"
|
2
|
+
|
3
|
+
module ZimbraWsdl
|
4
|
+
# Returns the path to the zimbra admin wsdl document.
|
5
|
+
#
|
6
|
+
# Example:
|
7
|
+
#
|
8
|
+
# require 'savon'
|
9
|
+
# require 'zimbra_wsdl'
|
10
|
+
#
|
11
|
+
# client = Savon::Client.new do
|
12
|
+
# wsdl.document = ZimbraWsdl.admin_wsdl
|
13
|
+
# wsdl.endpoint = 'https://zimbra.example.com:7071/service/admin/soap'
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
def self.admin_wsdl
|
17
|
+
File.expand_path('../zimbra.wsdl', __FILE__)
|
18
|
+
end
|
19
|
+
end
|
data/zimbra_wsdl.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/zimbra_wsdl/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Jorge Calás Lozano"]
|
6
|
+
gem.email = ["calas@qvitta.net"]
|
7
|
+
gem.description = %q{WSDL document for the VMware Zimbra soap api}
|
8
|
+
gem.summary = %q{WSDL document for the VMware Zimbra soap api}
|
9
|
+
gem.homepage = ""
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "zimbra_wsdl"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = ZimbraWsdl::VERSION
|
17
|
+
|
18
|
+
gem.add_development_dependency('minitest')
|
19
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: zimbra_wsdl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jorge Calás Lozano
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-06-01 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: minitest
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: WSDL document for the VMware Zimbra soap api
|
31
|
+
email:
|
32
|
+
- calas@qvitta.net
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- Gemfile
|
39
|
+
- LICENSE
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- doc/ZPL.txt
|
43
|
+
- doc/soap-admin.txt
|
44
|
+
- doc/soap-calendar.txt
|
45
|
+
- doc/soap-context-extension.txt
|
46
|
+
- doc/soap-im.txt
|
47
|
+
- doc/soap-mobile.txt
|
48
|
+
- doc/soap-right.txt
|
49
|
+
- doc/soap-waitset.txt
|
50
|
+
- doc/soap-wiki.txt
|
51
|
+
- doc/soap.txt
|
52
|
+
- examples/savon.rb
|
53
|
+
- examples/zimbra_authentication_example.rb
|
54
|
+
- lib/zimbra.wsdl
|
55
|
+
- lib/zimbra_wsdl.rb
|
56
|
+
- lib/zimbra_wsdl/version.rb
|
57
|
+
- spec/minitest_helper.rb
|
58
|
+
- spec/zimbra_wsdl_spec.rb
|
59
|
+
- zimbra_wsdl.gemspec
|
60
|
+
homepage: ''
|
61
|
+
licenses: []
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options: []
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ! '>='
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
requirements: []
|
79
|
+
rubyforge_project:
|
80
|
+
rubygems_version: 1.8.23
|
81
|
+
signing_key:
|
82
|
+
specification_version: 3
|
83
|
+
summary: WSDL document for the VMware Zimbra soap api
|
84
|
+
test_files:
|
85
|
+
- spec/minitest_helper.rb
|
86
|
+
- spec/zimbra_wsdl_spec.rb
|
87
|
+
has_rdoc:
|