weel 1.99.152 → 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 +6 -6
- 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
|
@@ -347,7 +347,7 @@ class WEEL
|
|
|
347
347
|
|
|
348
348
|
class ConnectionWrapperBase # {{{
|
|
349
349
|
def self::loop_guard(arguments,lid,count); false; end
|
|
350
|
-
def self::inform_state_change(arguments,newstate); end
|
|
350
|
+
def self::inform_state_change(arguments,newstate,data); end
|
|
351
351
|
def self::inform_syntax_error(arguments,err,code); end
|
|
352
352
|
def self::inform_connectionwrapper_error(arguments,err); end
|
|
353
353
|
def self::inform_position_change(arguments,ipc={}); end
|
|
@@ -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]
|
|
@@ -1123,7 +1123,7 @@ class WEEL
|
|
|
1123
1123
|
def __weel_finalize #{{{
|
|
1124
1124
|
__weel_recursive_join(@__weel_main)
|
|
1125
1125
|
@__weel_state = :stopped
|
|
1126
|
-
@__weel_connectionwrapper::inform_state_change @__weel_connectionwrapper_args, @__weel_state
|
|
1126
|
+
@__weel_connectionwrapper::inform_state_change @__weel_connectionwrapper_args, @__weel_state, @__weel_data
|
|
1127
1127
|
end #}}}
|
|
1128
1128
|
|
|
1129
1129
|
def __weel_state=(newState)# {{{
|
|
@@ -1132,7 +1132,7 @@ class WEEL
|
|
|
1132
1132
|
@__weel_positions = Array.new if newState == :running
|
|
1133
1133
|
@__weel_state = newState
|
|
1134
1134
|
|
|
1135
|
-
@__weel_connectionwrapper::inform_state_change @__weel_connectionwrapper_args, @__weel_state
|
|
1135
|
+
@__weel_connectionwrapper::inform_state_change @__weel_connectionwrapper_args, @__weel_state, @__weel_data
|
|
1136
1136
|
|
|
1137
1137
|
if newState == :stopping || newState == :finishing
|
|
1138
1138
|
__weel_recursive_continue(@__weel_main)
|
|
@@ -1176,7 +1176,7 @@ public
|
|
|
1176
1176
|
@dslr.__weel_state
|
|
1177
1177
|
end # }}}
|
|
1178
1178
|
def state_signal # {{{
|
|
1179
|
-
connectionwrapper::inform_state_change connectionwrapper_args, state
|
|
1179
|
+
connectionwrapper::inform_state_change connectionwrapper_args, state, data
|
|
1180
1180
|
state
|
|
1181
1181
|
end # }}}
|
|
1182
1182
|
def abandon # {{{
|
data/weel.gemspec
CHANGED