wash_out 0.9.2 → 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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.travis.yml +31 -4
  4. data/Appraisals +11 -10
  5. data/Gemfile +1 -1
  6. data/README.md +41 -7
  7. data/Rakefile +6 -7
  8. data/app/helpers/wash_out_helper.rb +59 -24
  9. data/app/views/{wash_with_soap → wash_out}/document/error.builder +0 -0
  10. data/app/views/{wash_with_soap → wash_out}/document/response.builder +0 -0
  11. data/app/views/{wash_with_soap → wash_out}/document/wsdl.builder +14 -14
  12. data/app/views/{wash_with_soap → wash_out}/rpc/error.builder +0 -0
  13. data/app/views/{wash_with_soap → wash_out}/rpc/response.builder +0 -0
  14. data/app/views/{wash_with_soap → wash_out}/rpc/wsdl.builder +15 -15
  15. data/gemfiles/rails_3.2.13.gemfile +21 -0
  16. data/gemfiles/rails_4.0.0.gemfile +20 -0
  17. data/gemfiles/rails_4.1.0.gemfile +20 -0
  18. data/gemfiles/rails_4.2.0.gemfile +20 -0
  19. data/gemfiles/rails_5.0.0.beta2.gemfile +19 -0
  20. data/lib/wash_out/dispatcher.rb +68 -38
  21. data/lib/wash_out/param.rb +14 -2
  22. data/lib/wash_out/router.rb +40 -21
  23. data/lib/wash_out/soap.rb +1 -0
  24. data/lib/wash_out/version.rb +1 -1
  25. data/lib/wash_out/wsse.rb +3 -3
  26. data/lib/wash_out.rb +17 -4
  27. data/spec/dummy/config/environments/test.rb +1 -0
  28. data/spec/fixtures/nested_refs_to_arrays.xml +19 -0
  29. data/spec/fixtures/ref_to_one_array.xml +11 -0
  30. data/spec/fixtures/refs_to_arrays.xml +16 -0
  31. data/spec/lib/wash_out/dispatcher_spec.rb +124 -17
  32. data/spec/lib/wash_out/middleware_spec.rb +8 -8
  33. data/spec/lib/wash_out/param_spec.rb +43 -11
  34. data/spec/lib/wash_out/router_spec.rb +33 -5
  35. data/spec/lib/wash_out/type_spec.rb +9 -9
  36. data/spec/lib/wash_out_spec.rb +160 -102
  37. data/spec/spec_helper.rb +24 -4
  38. metadata +19 -11
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.9.2
4
+ version: 0.11.0.beta.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boris Staal
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-01-19 00:00:00.000000000 Z
12
+ date: 2016-06-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: nori
@@ -42,12 +42,17 @@ files:
42
42
  - README.md
43
43
  - Rakefile
44
44
  - app/helpers/wash_out_helper.rb
45
- - app/views/wash_with_soap/document/error.builder
46
- - app/views/wash_with_soap/document/response.builder
47
- - app/views/wash_with_soap/document/wsdl.builder
48
- - app/views/wash_with_soap/rpc/error.builder
49
- - app/views/wash_with_soap/rpc/response.builder
50
- - app/views/wash_with_soap/rpc/wsdl.builder
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,6 +90,9 @@ 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
@@ -109,12 +117,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
109
117
  version: '0'
110
118
  required_rubygems_version: !ruby/object:Gem::Requirement
111
119
  requirements:
112
- - - ">="
120
+ - - ">"
113
121
  - !ruby/object:Gem::Version
114
- version: '0'
122
+ version: 1.3.1
115
123
  requirements: []
116
124
  rubyforge_project:
117
- rubygems_version: 2.2.2
125
+ rubygems_version: 2.5.1
118
126
  signing_key:
119
127
  specification_version: 4
120
128
  summary: Dead simple Rails 3 SOAP server library