riddl 0.111 → 0.112
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/examples/twitter/timeline.rb +76 -0
- data/examples/twitter/twitter.xml +2 -2
- data/examples/zotero/client.rb +10 -7
- data/examples/zotero/litlist.html +511 -202
- data/lib/ruby/riddl/wrapper/messageparser.rb +4 -2
- data/riddl.gemspec +1 -1
- metadata +3 -2
@@ -55,9 +55,11 @@ module Riddl
|
|
55
55
|
|
56
56
|
if b.class == Riddl::Parameter::Simple && (a.attributes['fixed'] || a.attributes['type'])
|
57
57
|
b.name = a.attributes['name'] if @numparams == 1
|
58
|
-
if (b.name == a.attributes['name'] || a.attributes['name'] == '*')
|
58
|
+
if (b.name == a.attributes['name'] || a.attributes['name'] == '*') && match_simple(a,b.value)
|
59
59
|
@mistp += 1
|
60
|
-
return
|
60
|
+
return true
|
61
|
+
else
|
62
|
+
return false
|
61
63
|
end
|
62
64
|
end
|
63
65
|
if b.class == Riddl::Parameter::Complex && a.attributes['mimetype']
|
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.
|
4
|
+
version: '0.112'
|
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:
|
13
|
+
date: 2021-04-19 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: daemonite
|
@@ -411,6 +411,7 @@ files:
|
|
411
411
|
- examples/twitter/README
|
412
412
|
- examples/twitter/client.rb
|
413
413
|
- examples/twitter/declaration.xml
|
414
|
+
- examples/twitter/timeline.rb
|
414
415
|
- examples/twitter/twitpic.xml
|
415
416
|
- examples/twitter/twitter.xml
|
416
417
|
- examples/websocket/client.rb
|