riddl 0.99.244 → 0.99.245
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/lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-delete.xml +7 -0
- data/lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/{bearer.xml → bearer-get.xml} +0 -0
- data/lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-post.xml +7 -0
- data/lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-put.xml +7 -0
- data/lib/ruby/riddl/utils/oauth2-univie.rb +0 -6
- data/ns/common-patterns/oauth2-univie-app/1.0/bearer-delete.xml +7 -0
- data/ns/common-patterns/oauth2-univie-app/1.0/{bearer.xml → bearer-get.xml} +0 -0
- data/ns/common-patterns/oauth2-univie-app/1.0/bearer-post.xml +7 -0
- data/ns/common-patterns/oauth2-univie-app/1.0/bearer-put.xml +7 -0
- data/riddl.gemspec +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 21279b3a0870c0fd0d3a2662b7282c858ca4c641
|
|
4
|
+
data.tar.gz: 82bf92d098062a188f9cd7576e44583566b52b4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b98a624e3da8b53ce1e5561c4ef2a66106dc179de3e814f71aa424c67a32ba9de236ce39d10d0889d6a6d2cc9aa33739c1e6f3d570b9fd0c8ca15b01fd79f6aa
|
|
7
|
+
data.tar.gz: 61a94dbce9455f865851b7745e3c93cba9f8585509f3493c9cca4631cc770de79f911a40f7b1b791aa8292a49b90a584833deb0d4a4982a8c605a6491a344a6e
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<description datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns="http://riddl.org/ns/description/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:doc="http://riddl.org/ns/documentation/1.0">
|
|
2
|
+
|
|
3
|
+
<resource>
|
|
4
|
+
<delete pass="*"/>
|
|
5
|
+
</resource>
|
|
6
|
+
|
|
7
|
+
</description>
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<description datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns="http://riddl.org/ns/description/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:doc="http://riddl.org/ns/documentation/1.0">
|
|
2
|
+
|
|
3
|
+
<resource>
|
|
4
|
+
<post pass="*"/>
|
|
5
|
+
</resource>
|
|
6
|
+
|
|
7
|
+
</description>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<description datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns="http://riddl.org/ns/description/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:doc="http://riddl.org/ns/documentation/1.0">
|
|
2
|
+
|
|
3
|
+
<resource>
|
|
4
|
+
<put pass="*"/>
|
|
5
|
+
</resource>
|
|
6
|
+
|
|
7
|
+
</description>
|
|
@@ -5,12 +5,6 @@ module Riddl
|
|
|
5
5
|
module OAuth2
|
|
6
6
|
|
|
7
7
|
module UnivieBearer
|
|
8
|
-
def self::implementation(client_id, client_secret, access_tokens)
|
|
9
|
-
Proc.new do
|
|
10
|
-
run CheckAuth, client_id, client_secret, access_tokens if get
|
|
11
|
-
end
|
|
12
|
-
end
|
|
13
|
-
|
|
14
8
|
class CheckAuth < Riddl::Implementation
|
|
15
9
|
def response
|
|
16
10
|
client_id = @a[0]
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<description datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns="http://riddl.org/ns/description/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:doc="http://riddl.org/ns/documentation/1.0">
|
|
2
|
+
|
|
3
|
+
<resource>
|
|
4
|
+
<delete pass="*"/>
|
|
5
|
+
</resource>
|
|
6
|
+
|
|
7
|
+
</description>
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<description datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns="http://riddl.org/ns/description/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:doc="http://riddl.org/ns/documentation/1.0">
|
|
2
|
+
|
|
3
|
+
<resource>
|
|
4
|
+
<post pass="*"/>
|
|
5
|
+
</resource>
|
|
6
|
+
|
|
7
|
+
</description>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<description datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns="http://riddl.org/ns/description/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:doc="http://riddl.org/ns/documentation/1.0">
|
|
2
|
+
|
|
3
|
+
<resource>
|
|
4
|
+
<put pass="*"/>
|
|
5
|
+
</resource>
|
|
6
|
+
|
|
7
|
+
</description>
|
data/riddl.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riddl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.99.
|
|
4
|
+
version: 0.99.245
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen 'eTM' Mangler
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: tools
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2016-05-
|
|
13
|
+
date: 2016-05-23 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: xml-smart
|
|
@@ -421,7 +421,10 @@ files:
|
|
|
421
421
|
- lib/ruby/riddl/ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
|
422
422
|
- lib/ruby/riddl/ns/common-patterns/notifications-producer/1.0/producer.xml
|
|
423
423
|
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/app.xml
|
|
424
|
-
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer.xml
|
|
424
|
+
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-delete.xml
|
|
425
|
+
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-get.xml
|
|
426
|
+
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-post.xml
|
|
427
|
+
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-put.xml
|
|
425
428
|
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.schema
|
|
426
429
|
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.xsl
|
|
427
430
|
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.xml
|
|
@@ -478,7 +481,10 @@ files:
|
|
|
478
481
|
- ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
|
479
482
|
- ns/common-patterns/notifications-producer/1.0/producer.xml
|
|
480
483
|
- ns/common-patterns/oauth2-univie-app/1.0/app.xml
|
|
481
|
-
- ns/common-patterns/oauth2-univie-app/1.0/bearer.xml
|
|
484
|
+
- ns/common-patterns/oauth2-univie-app/1.0/bearer-delete.xml
|
|
485
|
+
- ns/common-patterns/oauth2-univie-app/1.0/bearer-get.xml
|
|
486
|
+
- ns/common-patterns/oauth2-univie-app/1.0/bearer-post.xml
|
|
487
|
+
- ns/common-patterns/oauth2-univie-app/1.0/bearer-put.xml
|
|
482
488
|
- ns/common-patterns/properties/1.0/properties.schema.schema
|
|
483
489
|
- ns/common-patterns/properties/1.0/properties.schema.xsl
|
|
484
490
|
- ns/common-patterns/properties/1.0/properties.xml
|