weel 1.99.22 → 1.99.23
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/weel.rb +3 -2
- data/weel.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: 3f556fd0e38fd406cb052cccb4bdd1db33750ab4
|
|
4
|
+
data.tar.gz: 24b650115a2e78e98a23b117a98643cd48605a9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 605a3727405a91a4e39276d2086717c8ad6eef794a40aca6b3272b4f4fbb6f278e2ae8b7fb6dd36903c8b571d0ab6981c5c1dc728c28da408691f60f632443a0
|
|
7
|
+
data.tar.gz: 5d6dd9cf0336e6d37470fcf36bef2ff2cc04891f557de0de890cb32383e073c7fbd164a3ab29811a741afb80b24a579aeb4e49875f26a83f86826844d015dde4
|
data/lib/weel.rb
CHANGED
|
@@ -211,7 +211,7 @@ class WEEL
|
|
|
211
211
|
# nesting => none, start, end
|
|
212
212
|
# eid => id's also for control structures
|
|
213
213
|
# parameters => stuff given to the control structure
|
|
214
|
-
def simulate(type,nesting,
|
|
214
|
+
def simulate(type,nesting,sequence,parent,parameters={}); end
|
|
215
215
|
|
|
216
216
|
def callback(result); end
|
|
217
217
|
|
|
@@ -542,7 +542,8 @@ class WEEL
|
|
|
542
542
|
handlerwrapper = @__weel_handlerwrapper.new @__weel_handlerwrapper_args, endpoints.is_a?(Array) ? endpoints.map{|ep| @__weel_endpoints[ep] }.compact : @__weel_endpoints[endpoints], position, Thread.current[:continue]
|
|
543
543
|
|
|
544
544
|
if __weel_sim
|
|
545
|
-
|
|
545
|
+
Thread.current[:branch_sim_pos] = @__weel_sim += 1
|
|
546
|
+
handlerwrapper.simulate(:activity,:none,Thread.current[:branch_sim_pos],Thread.current[:branch_sim_pos],:position => position,:parameters => parameters,:endpoints => endpoints,:type => type)
|
|
546
547
|
return
|
|
547
548
|
end
|
|
548
549
|
|
data/weel.gemspec
CHANGED