wash_out 0.9.0 → 0.11.0.beta.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.
- checksums.yaml +4 -4
- data/.gitignore +3 -1
- data/.travis.yml +31 -3
- data/Appraisals +17 -8
- data/Gemfile +2 -2
- data/README.md +68 -8
- data/Rakefile +6 -7
- data/app/helpers/wash_out_helper.rb +59 -24
- data/app/views/{wash_with_soap → wash_out}/document/error.builder +1 -1
- data/app/views/{wash_with_soap → wash_out}/document/response.builder +1 -3
- data/app/views/{wash_with_soap → wash_out}/document/wsdl.builder +16 -16
- data/app/views/{wash_with_soap → wash_out}/rpc/error.builder +1 -1
- data/app/views/{wash_with_soap → wash_out}/rpc/response.builder +1 -3
- data/app/views/{wash_with_soap → wash_out}/rpc/wsdl.builder +17 -17
- data/gemfiles/rails_3.2.13.gemfile +21 -0
- data/gemfiles/rails_4.0.0.gemfile +20 -0
- data/gemfiles/rails_4.1.0.gemfile +20 -0
- data/gemfiles/rails_4.2.0.gemfile +20 -0
- data/gemfiles/rails_5.0.0.beta2.gemfile +19 -0
- data/lib/wash_out/dispatcher.rb +94 -48
- data/lib/wash_out/model.rb +1 -1
- data/lib/wash_out/param.rb +14 -1
- data/lib/wash_out/router.rb +46 -18
- data/lib/wash_out/soap.rb +5 -3
- data/lib/wash_out/soap_config.rb +2 -0
- data/lib/wash_out/version.rb +1 -1
- data/lib/wash_out/wsse.rb +27 -6
- data/lib/wash_out.rb +18 -5
- data/spec/dummy/config/environments/test.rb +1 -0
- data/spec/fixtures/nested_refs_to_arrays.xml +19 -0
- data/spec/fixtures/ref_to_one_array.xml +11 -0
- data/spec/fixtures/refs_to_arrays.xml +16 -0
- data/spec/lib/wash_out/dispatcher_spec.rb +135 -13
- data/spec/lib/wash_out/middleware_spec.rb +8 -8
- data/spec/lib/wash_out/param_spec.rb +43 -11
- data/spec/lib/wash_out/router_spec.rb +50 -0
- data/spec/lib/wash_out/type_spec.rb +9 -9
- data/spec/lib/wash_out_spec.rb +196 -88
- data/spec/spec_helper.rb +24 -4
- metadata +26 -17
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wash_out
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0.beta.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boris Staal
|
@@ -9,20 +9,20 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-06-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nori
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- -
|
18
|
+
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: 2.0.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- -
|
25
|
+
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: 2.0.0
|
28
28
|
description: Dead simple Rails 3 SOAP server library
|
@@ -31,9 +31,9 @@ executables: []
|
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
|
-
- .gitignore
|
35
|
-
- .rspec
|
36
|
-
- .travis.yml
|
34
|
+
- ".gitignore"
|
35
|
+
- ".rspec"
|
36
|
+
- ".travis.yml"
|
37
37
|
- Appraisals
|
38
38
|
- CHANGELOG.md
|
39
39
|
- Gemfile
|
@@ -42,12 +42,17 @@ files:
|
|
42
42
|
- README.md
|
43
43
|
- Rakefile
|
44
44
|
- app/helpers/wash_out_helper.rb
|
45
|
-
- app/views/
|
46
|
-
- app/views/
|
47
|
-
- app/views/
|
48
|
-
- app/views/
|
49
|
-
- app/views/
|
50
|
-
- app/views/
|
45
|
+
- app/views/wash_out/document/error.builder
|
46
|
+
- app/views/wash_out/document/response.builder
|
47
|
+
- app/views/wash_out/document/wsdl.builder
|
48
|
+
- app/views/wash_out/rpc/error.builder
|
49
|
+
- app/views/wash_out/rpc/response.builder
|
50
|
+
- app/views/wash_out/rpc/wsdl.builder
|
51
|
+
- gemfiles/rails_3.2.13.gemfile
|
52
|
+
- gemfiles/rails_4.0.0.gemfile
|
53
|
+
- gemfiles/rails_4.1.0.gemfile
|
54
|
+
- gemfiles/rails_4.2.0.gemfile
|
55
|
+
- gemfiles/rails_5.0.0.beta2.gemfile
|
51
56
|
- init.rb
|
52
57
|
- lib/wash_out.rb
|
53
58
|
- lib/wash_out/configurable.rb
|
@@ -85,9 +90,13 @@ files:
|
|
85
90
|
- spec/dummy/public/favicon.ico
|
86
91
|
- spec/dummy/public/stylesheets/.gitkeep
|
87
92
|
- spec/dummy/script/rails
|
93
|
+
- spec/fixtures/nested_refs_to_arrays.xml
|
94
|
+
- spec/fixtures/ref_to_one_array.xml
|
95
|
+
- spec/fixtures/refs_to_arrays.xml
|
88
96
|
- spec/lib/wash_out/dispatcher_spec.rb
|
89
97
|
- spec/lib/wash_out/middleware_spec.rb
|
90
98
|
- spec/lib/wash_out/param_spec.rb
|
99
|
+
- spec/lib/wash_out/router_spec.rb
|
91
100
|
- spec/lib/wash_out/type_spec.rb
|
92
101
|
- spec/lib/wash_out_spec.rb
|
93
102
|
- spec/spec_helper.rb
|
@@ -103,17 +112,17 @@ require_paths:
|
|
103
112
|
- lib
|
104
113
|
required_ruby_version: !ruby/object:Gem::Requirement
|
105
114
|
requirements:
|
106
|
-
- -
|
115
|
+
- - ">="
|
107
116
|
- !ruby/object:Gem::Version
|
108
117
|
version: '0'
|
109
118
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
119
|
requirements:
|
111
|
-
- -
|
120
|
+
- - ">"
|
112
121
|
- !ruby/object:Gem::Version
|
113
|
-
version:
|
122
|
+
version: 1.3.1
|
114
123
|
requirements: []
|
115
124
|
rubyforge_project:
|
116
|
-
rubygems_version: 2.
|
125
|
+
rubygems_version: 2.5.1
|
117
126
|
signing_key:
|
118
127
|
specification_version: 4
|
119
128
|
summary: Dead simple Rails 3 SOAP server library
|