weel 1.99.153 → 1.99.155
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 +2 -2
- data/weel.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d315d0d198c25589af6896bdea53ea7b739ca7d894ae50710dbc269de3e12498
|
|
4
|
+
data.tar.gz: e2e3959764ddbb84ce4333516848680eb6e1c7af7d156c0b9b3cb052d4f350b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22c95a4616057c3700e17832feb8b91aaf7e2fbf39704d76fcd5c181f25d3731c791d01061f9c5aba4324e628b6d82eb06d83e80d41e66dfc8cead5f7a7bac5f
|
|
7
|
+
data.tar.gz: c16598a4608ca09f92c8bef0460d00b80c0d671c2affc366d82b86182976cc2a45cab5e65bf6daa11b93afa432beb80448062aa30178b6f4a44f301da91771ce
|
data/lib/weel.rb
CHANGED
|
@@ -356,7 +356,7 @@ class WEEL
|
|
|
356
356
|
|
|
357
357
|
def additional; {}; end
|
|
358
358
|
|
|
359
|
-
def activity_handle(passthrough, parameters); end
|
|
359
|
+
def activity_handle(passthrough, parameters, dataelements); end
|
|
360
360
|
def activity_manipulate_handle(parameters); end
|
|
361
361
|
|
|
362
362
|
def activity_stop; end
|
|
@@ -928,7 +928,7 @@ class WEEL
|
|
|
928
928
|
raise Signal::Stop unless connectionwrapper.vote_sync_before(params)
|
|
929
929
|
raise Signal::Skip if self.__weel_state == :stopping || self.__weel_state == :finishing
|
|
930
930
|
|
|
931
|
-
connectionwrapper.activity_handle wp.passthrough, params
|
|
931
|
+
connectionwrapper.activity_handle wp.passthrough, params, @__weel_data
|
|
932
932
|
wp.passthrough = connectionwrapper.activity_passthrough_value
|
|
933
933
|
unless wp.passthrough.nil?
|
|
934
934
|
@__weel_connectionwrapper::inform_position_change @__weel_connectionwrapper_args, :wait => [wp]
|
data/weel.gemspec
CHANGED