handsoap 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +105 -0
- data/VERSION.yml +4 -0
- data/generators/handsoap/USAGE +0 -0
- data/generators/handsoap/handsoap_generator.rb +113 -0
- data/generators/handsoap/templates/DUMMY +0 -0
- data/lib/handsoap.rb +4 -0
- data/lib/handsoap/compiler.rb +182 -0
- data/lib/handsoap/deferred.rb +50 -0
- data/lib/handsoap/http.rb +4 -0
- data/lib/handsoap/http/drivers.rb +24 -0
- data/lib/handsoap/http/drivers/abstract_driver.rb +170 -0
- data/lib/handsoap/http/drivers/curb_driver.rb +41 -0
- data/lib/handsoap/http/drivers/event_machine_driver.rb +46 -0
- data/lib/handsoap/http/drivers/http_client_driver.rb +38 -0
- data/lib/handsoap/http/drivers/mock_driver.rb +39 -0
- data/lib/handsoap/http/drivers/net_http_driver.rb +69 -0
- data/lib/handsoap/http/part.rb +78 -0
- data/lib/handsoap/http/request.rb +63 -0
- data/lib/handsoap/http/response.rb +28 -0
- data/lib/handsoap/parser.rb +241 -0
- data/lib/handsoap/service.rb +481 -0
- data/lib/handsoap/xml_mason.rb +221 -0
- data/lib/handsoap/xml_query_front.rb +320 -0
- metadata +81 -0
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: handsoap
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Troels Knak-Nielsen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-10-11 00:00:00 +02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Handsoap is a library for creating SOAP clients in Ruby
|
17
|
+
email: troelskn@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README.markdown
|
24
|
+
files:
|
25
|
+
- README.markdown
|
26
|
+
- VERSION.yml
|
27
|
+
- generators/handsoap/USAGE
|
28
|
+
- generators/handsoap/handsoap_generator.rb
|
29
|
+
- generators/handsoap/templates/DUMMY
|
30
|
+
- lib/handsoap.rb
|
31
|
+
- lib/handsoap/compiler.rb
|
32
|
+
- lib/handsoap/deferred.rb
|
33
|
+
- lib/handsoap/http.rb
|
34
|
+
- lib/handsoap/http/drivers.rb
|
35
|
+
- lib/handsoap/http/drivers/abstract_driver.rb
|
36
|
+
- lib/handsoap/http/drivers/curb_driver.rb
|
37
|
+
- lib/handsoap/http/drivers/event_machine_driver.rb
|
38
|
+
- lib/handsoap/http/drivers/http_client_driver.rb
|
39
|
+
- lib/handsoap/http/drivers/mock_driver.rb
|
40
|
+
- lib/handsoap/http/drivers/net_http_driver.rb
|
41
|
+
- lib/handsoap/http/part.rb
|
42
|
+
- lib/handsoap/http/request.rb
|
43
|
+
- lib/handsoap/http/response.rb
|
44
|
+
- lib/handsoap/parser.rb
|
45
|
+
- lib/handsoap/service.rb
|
46
|
+
- lib/handsoap/xml_mason.rb
|
47
|
+
- lib/handsoap/xml_query_front.rb
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://github.com/unwire/handsoap
|
50
|
+
licenses: []
|
51
|
+
|
52
|
+
post_install_message:
|
53
|
+
rdoc_options:
|
54
|
+
- --charset=UTF-8
|
55
|
+
require_paths:
|
56
|
+
- lib
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: "0"
|
62
|
+
version:
|
63
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: "0"
|
68
|
+
version:
|
69
|
+
requirements:
|
70
|
+
- |-
|
71
|
+
You need to install either "curb" or "httpclient", using one of:
|
72
|
+
gem install curb
|
73
|
+
gem install httpclient
|
74
|
+
- It is recommended that you install either "nokogiri" or "libxml-ruby"
|
75
|
+
rubyforge_project:
|
76
|
+
rubygems_version: 1.3.5
|
77
|
+
signing_key:
|
78
|
+
specification_version: 3
|
79
|
+
summary: Handsoap is a library for creating SOAP clients in Ruby
|
80
|
+
test_files: []
|
81
|
+
|