wasabi 3.5.0 → 3.6.0

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 (48) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +14 -0
  3. data/README.md +4 -4
  4. data/lib/wasabi.rb +2 -0
  5. data/lib/wasabi/core_ext/string.rb +7 -8
  6. data/lib/wasabi/document.rb +2 -0
  7. data/lib/wasabi/parser.rb +25 -16
  8. data/lib/wasabi/resolver.rb +2 -0
  9. data/lib/wasabi/version.rb +3 -1
  10. data/spec/fixtures/brand.wsdl +624 -0
  11. data/spec/spec_helper.rb +2 -0
  12. data/spec/support/adapter.rb +2 -0
  13. data/spec/support/fixture.rb +2 -0
  14. data/spec/support/profiling.rb +2 -0
  15. data/spec/wasabi/core_ext/string_spec.rb +13 -11
  16. data/spec/wasabi/document/authentication_spec.rb +2 -0
  17. data/spec/wasabi/document/economic_spec.rb +2 -0
  18. data/spec/wasabi/document/encoded_endpoint_spec.rb +3 -1
  19. data/spec/wasabi/document/geotrust_spec.rb +7 -5
  20. data/spec/wasabi/document/inherited_spec.rb +2 -0
  21. data/spec/wasabi/document/multiple_namespaces_spec.rb +17 -15
  22. data/spec/wasabi/document/namespaced_actions_spec.rb +2 -0
  23. data/spec/wasabi/document/no_namespace_spec.rb +5 -3
  24. data/spec/wasabi/document/savon295_spec.rb +3 -1
  25. data/spec/wasabi/document/soap12_spec.rb +2 -0
  26. data/spec/wasabi/document/two_bindings_spec.rb +2 -0
  27. data/spec/wasabi/document_spec.rb +2 -0
  28. data/spec/wasabi/parser/get_servicename_spec.rb +2 -0
  29. data/spec/wasabi/parser/import_port_types_spec.rb +2 -0
  30. data/spec/wasabi/parser/juniper_spec.rb +2 -0
  31. data/spec/wasabi/parser/marketo_spec.rb +2 -0
  32. data/spec/wasabi/parser/multiple_namespaces_spec.rb +2 -0
  33. data/spec/wasabi/parser/multiple_parts_in_message_spec.rb +2 -0
  34. data/spec/wasabi/parser/no_message_parts_spec.rb +2 -0
  35. data/spec/wasabi/parser/no_namespace_spec.rb +2 -0
  36. data/spec/wasabi/parser/no_target_namespace_spec.rb +2 -0
  37. data/spec/wasabi/parser/softlayer_spec.rb +20 -0
  38. data/spec/wasabi/parser/symbolic_endpoint_spec.rb +7 -8
  39. data/spec/wasabi/parser/tradetracker_spec.rb +3 -1
  40. data/spec/wasabi/resolver_spec.rb +3 -1
  41. data/spec/wasabi/wasabi_spec.rb +2 -0
  42. metadata +66 -55
  43. data/.gitignore +0 -8
  44. data/.rspec +0 -1
  45. data/.travis.yml +0 -7
  46. data/Gemfile +0 -13
  47. data/Rakefile +0 -7
  48. data/wasabi.gemspec +0 -28
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler"
2
4
  Bundler.require :default, :development
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class FakeAdapterForTest < HTTPI::Adapter::Base
2
4
 
3
5
  register :fake_adapter_for_test
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SpecSupport
2
4
 
3
5
  class Fixture
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SpecSupport
2
4
 
3
5
  def benchmark(&block)
@@ -1,36 +1,38 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
- describe String do
5
+ describe Wasabi::CoreExt::String do
4
6
 
5
- describe "#snakecase" do
7
+ describe ".snakecase" do
6
8
  it "lowercases one word CamelCase" do
7
- expect("Merb".snakecase).to eq("merb")
9
+ expect(Wasabi::CoreExt::String.snakecase("Merb")).to eq("merb")
8
10
  end
9
11
 
10
12
  it "makes one underscore snakecase two word CamelCase" do
11
- expect("MerbCore".snakecase).to eq("merb_core")
13
+ expect(Wasabi::CoreExt::String.snakecase("MerbCore")).to eq("merb_core")
12
14
  end
13
15
 
14
16
  it "handles CamelCase with more than 2 words" do
15
- expect("SoYouWantContributeToMerbCore".snakecase).to eq("so_you_want_contribute_to_merb_core")
17
+ expect(Wasabi::CoreExt::String.snakecase("SoYouWantContributeToMerbCore")).to eq("so_you_want_contribute_to_merb_core")
16
18
  end
17
19
 
18
20
  it "handles CamelCase with more than 2 capital letter in a row" do
19
- expect("CNN".snakecase).to eq("cnn")
20
- expect("CNNNews".snakecase).to eq("cnn_news")
21
- expect("HeadlineCNNNews".snakecase).to eq("headline_cnn_news")
21
+ expect(Wasabi::CoreExt::String.snakecase("CNN")).to eq("cnn")
22
+ expect(Wasabi::CoreExt::String.snakecase("CNNNews")).to eq("cnn_news")
23
+ expect(Wasabi::CoreExt::String.snakecase("HeadlineCNNNews")).to eq("headline_cnn_news")
22
24
  end
23
25
 
24
26
  it "does NOT change one word lowercase" do
25
- expect("merb".snakecase).to eq("merb")
27
+ expect(Wasabi::CoreExt::String.snakecase("merb")).to eq("merb")
26
28
  end
27
29
 
28
30
  it "leaves snake_case as is" do
29
- expect("merb_core".snakecase).to eq("merb_core")
31
+ expect(Wasabi::CoreExt::String.snakecase("merb_core")).to eq("merb_core")
30
32
  end
31
33
 
32
34
  it "converts period characters to underscores" do
33
- expect("User.GetEmail".snakecase).to eq("user_get_email")
35
+ expect(Wasabi::CoreExt::String.snakecase("User.GetEmail")).to eq("user_get_email")
34
36
  end
35
37
  end
36
38
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe Wasabi::Document do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -7,7 +9,7 @@ describe Wasabi::Document do
7
9
 
8
10
  describe '#endpoint' do
9
11
  subject { super().endpoint }
10
- it { should == URI("http://localhost/soapservice/execute?path=/base/includes/Test+Soap/Return+Rows") }
12
+ it { is_expected.to eq URI("http://localhost/soapservice/execute?path=/base/includes/Test+Soap/Return+Rows") }
11
13
  end
12
14
 
13
15
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -27,11 +29,11 @@ describe Wasabi::Document do
27
29
  describe '#operations' do
28
30
  subject { super().operations }
29
31
  it do
30
- should include(
31
- { :get_quick_approver_list => { :input => "GetQuickApproverList", :action => "GetQuickApproverList", :parameters=>{:Request=>{:name=>"Request", :type=>"GetQuickApproverListInput"}}}},
32
- { :hello => { :input => "hello", :action => "hello", :parameters=>{:Input=>{:name=>"Input", :type=>"string"}} } }
33
- )
34
- end
32
+ should include(
33
+ { :get_quick_approver_list => { :input => "GetQuickApproverList", :action => "GetQuickApproverList", :parameters=>{:Request=>{:name=>"Request", :type=>"GetQuickApproverListInput"}}}},
34
+ { :hello => { :input => "hello", :action => "hello", :parameters=>{:Input=>{:name=>"Input", :type=>"string"}} } }
35
+ )
36
+ end
35
37
  end
36
38
 
37
39
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -7,17 +9,17 @@ describe Wasabi::Document do
7
9
 
8
10
  describe '#namespace' do
9
11
  subject { super().namespace }
10
- it { should == "http://example.com/actions" }
12
+ it { is_expected.to eq "http://example.com/actions" }
11
13
  end
12
14
 
13
15
  describe '#endpoint' do
14
16
  subject { super().endpoint }
15
- it { should == URI("http://example.com:1234/soap") }
17
+ it { is_expected.to eq URI("http://example.com:1234/soap") }
16
18
  end
17
19
 
18
20
  describe '#element_form_default' do
19
21
  subject { super().element_form_default }
20
- it { should == :qualified }
22
+ it { is_expected.to eq :qualified }
21
23
  end
22
24
 
23
25
  it 'has 1 operation' do
@@ -27,28 +29,28 @@ describe Wasabi::Document do
27
29
  describe '#operations' do
28
30
  subject { super().operations }
29
31
  it do
30
- should == { :save => { :input => "Save", :output=>"SaveResponse", :action => "http://example.com/actions.Save", :namespace_identifier => "actions", :parameters => { :article => { :name => "article", :type => "Article" } } } }
31
- end
32
+ is_expected.to match({ :save => { :input => "Save", :output=>"SaveResponse", :action => "http://example.com/actions.Save", :namespace_identifier => "actions", :parameters => { :article => { :name => "article", :type => "Article" } } } })
33
+ end
32
34
  end
33
35
 
34
36
  describe '#type_namespaces' do
35
37
  subject { super().type_namespaces }
36
38
  it do
37
- should =~ [
38
- [["Save"], "http://example.com/actions"],
39
- [["Save", "article"], "http://example.com/actions"],
40
- [["Article"], "http://example.com/article"],
41
- [["Article", "Author"], "http://example.com/article"],
42
- [["Article", "Title"], "http://example.com/article"]
43
- ]
44
- end
39
+ is_expected.to match([
40
+ [["Save"], "http://example.com/actions"],
41
+ [["Save", "article"], "http://example.com/actions"],
42
+ [["Article"], "http://example.com/article"],
43
+ [["Article", "Author"], "http://example.com/article"],
44
+ [["Article", "Title"], "http://example.com/article"]
45
+ ])
46
+ end
45
47
  end
46
48
 
47
49
  describe '#type_definitions' do
48
50
  subject { super().type_definitions }
49
51
  it do
50
- should =~ [ [["Save", "article"], "Article"] ]
51
- end
52
+ is_expected.to match([ [["Save", "article"], "Article"] ])
53
+ end
52
54
  end
53
55
 
54
56
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -28,9 +30,9 @@ describe Wasabi::Document do
28
30
  subject { super().operations }
29
31
  it do
30
32
  should include(
31
- { :get_user_login_by_id => { :input => "GetUserLoginById", :output => "GetUserLoginById", :action => "/api/api/GetUserLoginById", :namespace_identifier => "typens" } },
32
- { :get_all_contacts => { :input => "GetAllContacts", :output =>"GetAllContacts", :action => "/api/api/GetAllContacts", :namespace_identifier => "typens" } },
33
- { :search_user => { :input => "SearchUser", :output =>"SearchUser", :action => "/api/api/SearchUser", :namespace_identifier => nil } }
33
+ { :get_user_login_by_id => { :input => { "GetUserLoginById" => { "api_key" => ["xsd", "string"], "id" => ["xsd", "int"] }}, :output=>{"GetUserLoginById"=>{"return"=>["xsd", "string"]}}, :action => "/api/api/GetUserLoginById", :namespace_identifier => "typens" } },
34
+ { :get_all_contacts => { :input => {"GetAllContacts" => { "api_key" => ["xsd", "string"], "login"=>["xsd", "string"] }}, :output=>{"GetAllContacts"=>{"return"=>["typens", "McContactArray"]}}, :action => "/api/api/GetAllContacts", :namespace_identifier => "typens" } },
35
+ { :search_user => { :input => { "SearchUser" => { "api_key" => ["xsd", "string"], "phrase"=>["xsd", "string"], "page"=>["xsd", "string"], "per_page"=>["xsd", "string"] }}, :output=>{"SearchUser"=>{"return"=>["typens", "MpUserArray"]}}, :action => "/api/api/SearchUser", :namespace_identifier => nil } }
34
36
  )
35
37
  end
36
38
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -9,7 +11,7 @@ describe Wasabi::Document do
9
11
  subject { super().operations }
10
12
  it do
11
13
  should include(
12
- { :sendsms => { :input => "sendsms", :output => "sendsms", :action => "sendsms", :namespace_identifier => "tns" } }
14
+ { :sendsms => { :input=>{"sendsms"=>{"sender"=>["xsd", "string"], "cellular"=>["xsd", "string"], "msg"=>["xsd", "string"], "smsnumgroup"=>["xsd", "string"], "emailaddr"=>["xsd", "string"], "udh"=>["xsd", "string"], "datetime"=>["xsd", "string"], "format"=>["xsd", "string"], "dlrurl"=>["xsd", "string"]}}, :output=>{"sendsms"=>{"body"=>["xsd", "string"]}}, :action => "sendsms", :namespace_identifier => 'tns' } }
13
15
  )
14
16
  end
15
17
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Document do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Parser do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Parser do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Parser do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe Wasabi::Parser do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Parser do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Parser do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe Wasabi::Parser do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Parser do
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Parser do
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ describe Wasabi::Parser do
6
+ context 'with: brand.wsdl' do
7
+ subject do
8
+ parser = Wasabi::Parser.new Nokogiri::XML(xml)
9
+ parser.parse
10
+ parser
11
+ end
12
+
13
+ let(:xml) { fixture(:brand).read }
14
+
15
+ it 'parses the operations' do
16
+ expect(subject.operations[:create_object][:input]).to eq('createObject' => { 'templateObject' => ['tns', 'SoftLayer_Brand'] })
17
+ expect(subject.operations[:create_customer_account][:input]).to eq('createCustomerAccount' => {'account' => ['tns', 'SoftLayer_Account'], 'bypassDuplicateAccountCheck' => ['xsd', 'boolean']})
18
+ end
19
+ end
20
+ end
@@ -1,22 +1,21 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Parser do
4
6
  context "with: symbolic_endpoint.wsdl" do
5
-
6
- subject do
7
- parser = Wasabi::Parser.new Nokogiri::XML(xml)
8
- parser.parse
9
- parser
10
- end
7
+ subject(:parser) { described_class.new Nokogiri::XML(xml) }
11
8
 
12
9
  let(:xml) { fixture(:symbolic_endpoint).read }
13
10
 
11
+ before { parser.parse }
12
+
14
13
  it "allows symbolic endpoints" do
15
- expect(subject.endpoint).to be_nil
14
+ expect(parser.endpoint).to be_nil
16
15
  end
17
16
 
18
17
  it "should position base class attributes before subclass attributes in :order! array" do
19
- type = subject.types["ROPtsLiesListe"]
18
+ type = parser.types["ROPtsLiesListe"]
20
19
  expect(type[:order!]).to eq(["messages", "returncode", "listenteil"])
21
20
  end
22
21
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe Wasabi::Parser do
@@ -11,7 +13,7 @@ describe Wasabi::Parser do
11
13
  let(:xml) { fixture(:tradetracker).read }
12
14
 
13
15
  it 'parses the operations' do
14
- expect(subject.operations[:get_feeds][:input]).to eq('getFeeds')
16
+ expect(subject.operations[:get_feeds][:input]).to eq('getFeeds' => {"affiliateSiteID"=>["xsd", "nonNegativeInteger"], "options"=>["tns", "FeedFilter"]})
15
17
  end
16
18
  end
17
19
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi::Resolver do
@@ -38,7 +40,7 @@ describe Wasabi::Resolver do
38
40
  body = "<html><head><title>404 Not Found</title></head><body>Oops!</body></html>"
39
41
  failed_response = HTTPI::Response.new(code, headers, body)
40
42
 
41
- HTTPI.stub(:get => failed_response)
43
+ expect(HTTPI).to receive(:get) { failed_response }
42
44
 
43
45
  url = "http://example.com?wsdl"
44
46
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "spec_helper"
2
4
 
3
5
  describe Wasabi do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wasabi
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Harrington
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-01 00:00:00.000000000 Z
11
+ date: 2020-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpi
@@ -38,34 +38,48 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: 1.4.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: addressable
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: rake
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
59
  - - "~>"
46
60
  - !ruby/object:Gem::Version
47
- version: '0.9'
61
+ version: '13.0'
48
62
  type: :development
49
63
  prerelease: false
50
64
  version_requirements: !ruby/object:Gem::Requirement
51
65
  requirements:
52
66
  - - "~>"
53
67
  - !ruby/object:Gem::Version
54
- version: '0.9'
68
+ version: '13.0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: rspec
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
73
  - - "~>"
60
74
  - !ruby/object:Gem::Version
61
- version: '2.14'
75
+ version: 3.7.0
62
76
  type: :development
63
77
  prerelease: false
64
78
  version_requirements: !ruby/object:Gem::Requirement
65
79
  requirements:
66
80
  - - "~>"
67
81
  - !ruby/object:Gem::Version
68
- version: '2.14'
82
+ version: 3.7.0
69
83
  description: A simple WSDL parser
70
84
  email:
71
85
  - me@rubiii.com
@@ -73,14 +87,9 @@ executables: []
73
87
  extensions: []
74
88
  extra_rdoc_files: []
75
89
  files:
76
- - ".gitignore"
77
- - ".rspec"
78
- - ".travis.yml"
79
90
  - CHANGELOG.md
80
- - Gemfile
81
91
  - LICENSE
82
92
  - README.md
83
- - Rakefile
84
93
  - lib/wasabi.rb
85
94
  - lib/wasabi/core_ext/string.rb
86
95
  - lib/wasabi/document.rb
@@ -88,6 +97,7 @@ files:
88
97
  - lib/wasabi/resolver.rb
89
98
  - lib/wasabi/version.rb
90
99
  - spec/fixtures/authentication.wsdl
100
+ - spec/fixtures/brand.wsdl
91
101
  - spec/fixtures/economic.wsdl
92
102
  - spec/fixtures/encoded_endpoint.wsdl
93
103
  - spec/fixtures/geotrust.wsdl
@@ -133,16 +143,16 @@ files:
133
143
  - spec/wasabi/parser/no_message_parts_spec.rb
134
144
  - spec/wasabi/parser/no_namespace_spec.rb
135
145
  - spec/wasabi/parser/no_target_namespace_spec.rb
146
+ - spec/wasabi/parser/softlayer_spec.rb
136
147
  - spec/wasabi/parser/symbolic_endpoint_spec.rb
137
148
  - spec/wasabi/parser/tradetracker_spec.rb
138
149
  - spec/wasabi/resolver_spec.rb
139
150
  - spec/wasabi/wasabi_spec.rb
140
- - wasabi.gemspec
141
151
  homepage: https://github.com/savonrb/wasabi
142
152
  licenses:
143
153
  - MIT
144
154
  metadata: {}
145
- post_install_message:
155
+ post_install_message:
146
156
  rdoc_options: []
147
157
  require_paths:
148
158
  - lib
@@ -157,59 +167,60 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
167
  - !ruby/object:Gem::Version
158
168
  version: '0'
159
169
  requirements: []
160
- rubyforge_project: wasabi
161
- rubygems_version: 2.2.2
162
- signing_key:
170
+ rubygems_version: 3.1.3
171
+ signing_key:
163
172
  specification_version: 4
164
173
  summary: A simple WSDL parser
165
174
  test_files:
166
- - spec/fixtures/authentication.wsdl
167
- - spec/fixtures/economic.wsdl
168
- - spec/fixtures/encoded_endpoint.wsdl
169
- - spec/fixtures/geotrust.wsdl
170
- - spec/fixtures/import_port_types.wsdl
171
- - spec/fixtures/inherited.wsdl
172
- - spec/fixtures/juniper.wsdl
173
- - spec/fixtures/lower_camel.wsdl
174
- - spec/fixtures/marketo.wsdl
175
- - spec/fixtures/multiple_namespaces.wsdl
176
- - spec/fixtures/multiple_parts_in_message.wsdl
177
- - spec/fixtures/multiple_types.wsdl
178
- - spec/fixtures/namespaced_actions.wsdl
179
- - spec/fixtures/no_message_parts.wsdl
180
- - spec/fixtures/no_namespace.wsdl
181
- - spec/fixtures/savon295.wsdl
182
- - spec/fixtures/soap12.wsdl
183
- - spec/fixtures/symbolic_endpoint.wsdl
184
- - spec/fixtures/tradetracker.wsdl
185
- - spec/fixtures/two_bindings.wsdl
186
175
  - spec/spec_helper.rb
187
- - spec/support/adapter.rb
188
- - spec/support/fixture.rb
189
- - spec/support/profiling.rb
190
176
  - spec/wasabi/core_ext/string_spec.rb
191
- - spec/wasabi/document/authentication_spec.rb
192
177
  - spec/wasabi/document/economic_spec.rb
193
- - spec/wasabi/document/encoded_endpoint_spec.rb
194
- - spec/wasabi/document/geotrust_spec.rb
195
- - spec/wasabi/document/inherited_spec.rb
196
- - spec/wasabi/document/multiple_namespaces_spec.rb
197
- - spec/wasabi/document/namespaced_actions_spec.rb
198
178
  - spec/wasabi/document/no_namespace_spec.rb
199
- - spec/wasabi/document/savon295_spec.rb
179
+ - spec/wasabi/document/namespaced_actions_spec.rb
180
+ - spec/wasabi/document/authentication_spec.rb
181
+ - spec/wasabi/document/encoded_endpoint_spec.rb
200
182
  - spec/wasabi/document/soap12_spec.rb
201
183
  - spec/wasabi/document/two_bindings_spec.rb
202
- - spec/wasabi/document_spec.rb
203
- - spec/wasabi/parser/get_servicename_spec.rb
204
- - spec/wasabi/parser/import_port_types_spec.rb
184
+ - spec/wasabi/document/multiple_namespaces_spec.rb
185
+ - spec/wasabi/document/inherited_spec.rb
186
+ - spec/wasabi/document/geotrust_spec.rb
187
+ - spec/wasabi/document/savon295_spec.rb
188
+ - spec/wasabi/parser/no_target_namespace_spec.rb
189
+ - spec/wasabi/parser/no_namespace_spec.rb
205
190
  - spec/wasabi/parser/juniper_spec.rb
206
- - spec/wasabi/parser/marketo_spec.rb
207
- - spec/wasabi/parser/multiple_namespaces_spec.rb
208
- - spec/wasabi/parser/multiple_parts_in_message_spec.rb
191
+ - spec/wasabi/parser/get_servicename_spec.rb
209
192
  - spec/wasabi/parser/no_message_parts_spec.rb
210
- - spec/wasabi/parser/no_namespace_spec.rb
211
- - spec/wasabi/parser/no_target_namespace_spec.rb
212
193
  - spec/wasabi/parser/symbolic_endpoint_spec.rb
194
+ - spec/wasabi/parser/softlayer_spec.rb
213
195
  - spec/wasabi/parser/tradetracker_spec.rb
196
+ - spec/wasabi/parser/marketo_spec.rb
197
+ - spec/wasabi/parser/multiple_namespaces_spec.rb
198
+ - spec/wasabi/parser/multiple_parts_in_message_spec.rb
199
+ - spec/wasabi/parser/import_port_types_spec.rb
214
200
  - spec/wasabi/resolver_spec.rb
215
201
  - spec/wasabi/wasabi_spec.rb
202
+ - spec/wasabi/document_spec.rb
203
+ - spec/support/profiling.rb
204
+ - spec/support/adapter.rb
205
+ - spec/support/fixture.rb
206
+ - spec/fixtures/namespaced_actions.wsdl
207
+ - spec/fixtures/no_message_parts.wsdl
208
+ - spec/fixtures/multiple_parts_in_message.wsdl
209
+ - spec/fixtures/lower_camel.wsdl
210
+ - spec/fixtures/marketo.wsdl
211
+ - spec/fixtures/juniper.wsdl
212
+ - spec/fixtures/authentication.wsdl
213
+ - spec/fixtures/encoded_endpoint.wsdl
214
+ - spec/fixtures/tradetracker.wsdl
215
+ - spec/fixtures/import_port_types.wsdl
216
+ - spec/fixtures/brand.wsdl
217
+ - spec/fixtures/multiple_namespaces.wsdl
218
+ - spec/fixtures/multiple_types.wsdl
219
+ - spec/fixtures/geotrust.wsdl
220
+ - spec/fixtures/no_namespace.wsdl
221
+ - spec/fixtures/soap12.wsdl
222
+ - spec/fixtures/two_bindings.wsdl
223
+ - spec/fixtures/economic.wsdl
224
+ - spec/fixtures/symbolic_endpoint.wsdl
225
+ - spec/fixtures/inherited.wsdl
226
+ - spec/fixtures/savon295.wsdl