shapewear 0.1.1 → 0.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.2
4
+ * Fixed a bug when returning SOAP:Faults.
5
+
3
6
  ## 0.1.1
4
7
  * Added support for SOAP 1.2 Faults;
5
8
  * Refactored the request handling into its own class.
@@ -93,7 +93,7 @@ module Shapewear::Request
93
93
  xb = Builder::XmlMarkup.new
94
94
  xb.instruct!
95
95
 
96
- xb.Envelope 'xmlns:e' => soap_env_ns do |xenv|
96
+ xb.tag! 'e:Envelope', 'xmlns:e' => soap_env_ns do |xenv|
97
97
  xenv.tag! 'e:Body' do |xbody|
98
98
  xbody.tag! 'e:Fault' do |xf|
99
99
  case soap_version
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Shapewear
4
4
 
5
- Version = "0.1.1"
5
+ Version = "0.1.2"
6
6
 
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shapewear
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - "F\xC3\xA1bio Batista"
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-01-12 00:00:00 Z
18
+ date: 2012-01-13 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: builder