soaspec 0.0.1 → 0.0.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/lib/soaspec/basic_soap_handler.rb +0 -1
- data/lib/soaspec/version.rb +1 -1
- data/soaspec.gemspec +4 -13
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4aeae98e8cd28fc7f6d14d4bce9ffc8a65bafa39
|
|
4
|
+
data.tar.gz: '0885330c8c3019d0164f4248de6d0e7e95223942'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e939ebc4b4950cfab6efc3194ba3d91b501b1226e80070915767ce0701e9fbcbb76e2173e7e1852ce37aebe0e872f42648ed12452dbe6e2f2e4e25315a096c83
|
|
7
|
+
data.tar.gz: f5b8616656f60026b9a20276cd24ae33aa1896b6addae15bbf70c5b12c1317548fac9aafe75d8a701827142edfb03c9cada337f9234db358a25c9ddc568f0ea7
|
data/Gemfile.lock
CHANGED
|
@@ -58,7 +58,6 @@ module Soaspec
|
|
|
58
58
|
def make_request(override_parameters)
|
|
59
59
|
test_values = override_parameters # Used in Erb
|
|
60
60
|
# Erb parses template file, executing Ruby code in `<% %>` blocks to work out final request
|
|
61
|
-
puts 'O' + override_parameters.to_s
|
|
62
61
|
if @request_option == :template
|
|
63
62
|
request_body = File.read('template/' + template_name + '.xml')
|
|
64
63
|
render_body = ERB.new(request_body).result(binding)
|
data/lib/soaspec/version.rb
CHANGED
data/soaspec.gemspec
CHANGED
|
@@ -9,21 +9,12 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["SamuelGarrattIQA"]
|
|
10
10
|
spec.email = ["samuel.garratt@integrationqa.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{Helps to create
|
|
13
|
-
spec.description = %q{Helps to create
|
|
14
|
-
|
|
15
|
-
spec.homepage =
|
|
12
|
+
spec.summary = %q{Helps to create RSpec specs for SOAP or REST apis }
|
|
13
|
+
spec.description = %q{Helps to create RSpec specs for SOAP or REST apis. Easily represent multiple requests with
|
|
14
|
+
the same }
|
|
15
|
+
spec.homepage = 'https://gitlab.com/samuel-garratt/soaspec'
|
|
16
16
|
spec.license = "MIT"
|
|
17
17
|
|
|
18
|
-
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
19
|
-
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
20
|
-
if spec.respond_to?(:metadata)
|
|
21
|
-
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
22
|
-
else
|
|
23
|
-
raise "RubyGems 2.0 or newer is required to protect against " \
|
|
24
|
-
"public gem pushes."
|
|
25
|
-
end
|
|
26
|
-
|
|
27
18
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
28
19
|
f.match(%r{^(test|spec|features)/})
|
|
29
20
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: soaspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SamuelGarrattIQA
|
|
@@ -80,8 +80,8 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '2'
|
|
83
|
-
description: "Helps to create
|
|
84
|
-
|
|
83
|
+
description: "Helps to create RSpec specs for SOAP or REST apis. Easily represent
|
|
84
|
+
multiple requests with\nthe same "
|
|
85
85
|
email:
|
|
86
86
|
- samuel.garratt@integrationqa.com
|
|
87
87
|
executables:
|
|
@@ -111,11 +111,10 @@ files:
|
|
|
111
111
|
- lib/soaspec/version.rb
|
|
112
112
|
- soaspec.gemspec
|
|
113
113
|
- template/soap_template.xml
|
|
114
|
-
homepage: https://
|
|
114
|
+
homepage: https://gitlab.com/samuel-garratt/soaspec
|
|
115
115
|
licenses:
|
|
116
116
|
- MIT
|
|
117
|
-
metadata:
|
|
118
|
-
allowed_push_host: https://rubygems.org
|
|
117
|
+
metadata: {}
|
|
119
118
|
post_install_message:
|
|
120
119
|
rdoc_options: []
|
|
121
120
|
require_paths:
|
|
@@ -135,5 +134,5 @@ rubyforge_project:
|
|
|
135
134
|
rubygems_version: 2.6.14
|
|
136
135
|
signing_key:
|
|
137
136
|
specification_version: 4
|
|
138
|
-
summary: Helps to create
|
|
137
|
+
summary: Helps to create RSpec specs for SOAP or REST apis
|
|
139
138
|
test_files: []
|