mdqt 0.6.0 → 0.7.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.
- checksums.yaml +4 -4
- data/.tool-versions +1 -1
- data/CHANGELOG.md +20 -0
- data/README.md +4 -8
- data/exe/mdqt +1 -1
- data/lib/mdqt/cli/ln.rb +1 -1
- data/lib/mdqt/cli/rename.rb +2 -2
- data/lib/mdqt/client/metadata_validator.rb +1 -1
- data/lib/mdqt/schema/MetadataExchange.xsd +112 -0
- data/lib/mdqt/schema/mdqt_check_schema.xsd +5 -0
- data/lib/mdqt/schema/oasis-200401-wss-wssecurity-secext-1.0.xsd +195 -0
- data/lib/mdqt/schema/oasis-200401-wss-wssecurity-utility-1.0.xsd +108 -0
- data/lib/mdqt/schema/ws-addr.xsd +137 -0
- data/lib/mdqt/schema/ws-authorization.xsd +145 -0
- data/lib/mdqt/schema/ws-federation.xsd +471 -0
- data/lib/mdqt/schema/ws-securitypolicy-1.2.xsd +1205 -0
- data/lib/mdqt/version.rb +1 -1
- data/mdqt.gemspec +0 -9
- metadata +11 -3
data/lib/mdqt/version.rb
CHANGED
data/mdqt.gemspec
CHANGED
@@ -16,15 +16,6 @@ Gem::Specification.new do |spec|
|
|
16
16
|
|
17
17
|
spec.required_ruby_version = '>= 2.1.0'
|
18
18
|
|
19
|
-
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
20
|
-
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
21
|
-
# if spec.respond_to?(:metadata)
|
22
|
-
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
23
|
-
# else
|
24
|
-
# raise "RubyGems 2.0 or newer is required to protect against " \
|
25
|
-
# "public gem pushes."
|
26
|
-
# end
|
27
|
-
|
28
19
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
29
20
|
f.match(%r{^(test|spec|features)/})
|
30
21
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mdqt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pete Birkinshaw
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: commander
|
@@ -301,8 +301,16 @@ files:
|
|
301
301
|
- lib/mdqt/client/metadata_response.rb
|
302
302
|
- lib/mdqt/client/metadata_service.rb
|
303
303
|
- lib/mdqt/client/metadata_validator.rb
|
304
|
+
- lib/mdqt/schema/MetadataExchange.xsd
|
305
|
+
- lib/mdqt/schema/mdqt_check_schema.xsd
|
306
|
+
- lib/mdqt/schema/oasis-200401-wss-wssecurity-secext-1.0.xsd
|
307
|
+
- lib/mdqt/schema/oasis-200401-wss-wssecurity-utility-1.0.xsd
|
304
308
|
- lib/mdqt/schema/saml-schema-assertion-2.0.xsd
|
305
309
|
- lib/mdqt/schema/saml-schema-metadata-2.0.xsd
|
310
|
+
- lib/mdqt/schema/ws-addr.xsd
|
311
|
+
- lib/mdqt/schema/ws-authorization.xsd
|
312
|
+
- lib/mdqt/schema/ws-federation.xsd
|
313
|
+
- lib/mdqt/schema/ws-securitypolicy-1.2.xsd
|
306
314
|
- lib/mdqt/schema/xenc-schema.xsd
|
307
315
|
- lib/mdqt/schema/xml.xsd
|
308
316
|
- lib/mdqt/schema/xmldsig-core-schema.xsd
|
@@ -331,7 +339,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
331
339
|
- !ruby/object:Gem::Version
|
332
340
|
version: '0'
|
333
341
|
requirements: []
|
334
|
-
rubygems_version: 3.
|
342
|
+
rubygems_version: 3.4.1
|
335
343
|
signing_key:
|
336
344
|
specification_version: 4
|
337
345
|
summary: Library and commandline utility for accessing MDQ services
|