weel 1.99.152 → 1.99.153
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 +4 -4
- 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: 98ff5ec5f2c89a41f30f5087cf4f9fb9c58f12569e84d586a3095e29b8390740
|
|
4
|
+
data.tar.gz: 30686408ed8c016612b825221dff7836331deec7bfad36f32d34ece39d200d4c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53734eb99a548c08525a41bfc717bc4ab495efcc23bbb8ce8774e82be40e19c83ff4053dda16e76a304c9d96600f57b333771465f3a4817ae5a9a587bd511183
|
|
7
|
+
data.tar.gz: 4ffa05575fda41d1fbd7218b1379f07deaee1cdb701034b25c613c1818bbf8fcd85db4d66e2fe0103212fb29e6216f99ed6e530a71f34b452364695ce5f9cda6
|
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
|
|
@@ -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