satori_like_dictionary 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/satori_like_dictionary.rb +3 -0
- data/satori_like_dictionary.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41d15e9e900d9a3a4d03d0dd1f2d722e47613d63
|
4
|
+
data.tar.gz: 372f635e5c13931dd1e38a659dc4a644f0e8d5ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f38038f352eb259ed756368a93637f4b5a4b4517655385ffd7d69b517ea6b60bd665023f17a6d09ccebb10a5cc4c67a2c01df601792aa77da659931a7b193f7a
|
7
|
+
data.tar.gz: 5bf331fa214fa119a2197e5d9ac586fcd3328d83245c28d6004b2640e771ab614279f974db1ca2de73cd8c6f99589528187a795a952f408a6bcbfbd53f15df3a
|
@@ -333,6 +333,9 @@ class SatoriLikeDictionaryIntegratedEvents
|
|
333
333
|
# detect caller method name (= request ID)
|
334
334
|
if RUBY_ENGINE == 'opal'
|
335
335
|
matched = caller[1].match(/\[as \$(.*?)\]/)
|
336
|
+
unless matched
|
337
|
+
matched = caller[1].match(/^\s*at \S*\$([^$]+?)\b/)
|
338
|
+
end
|
336
339
|
return unless matched
|
337
340
|
method = matched[1]
|
338
341
|
else
|