work_shaper 0.1.3.1rc4 → 0.1.3.1rc5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/work_shaper/offset_holder.rb +3 -3
- data/lib/work_shaper/version.rb +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: ee42adfc0a4002f31b442eec3ea46dd3b878dc8fabadccb010cfb27070142223
|
4
|
+
data.tar.gz: b8e268a9c867df76e210b279b3c8c2b62446b347c7ab02db1a381c3b5a80f7c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94b8e9d89e51fce2f374eabef54d89a43703b48dba1dd9979598342a26182e2eb739a1fc0f2afa842100c1ab8bc32f094f2904680243e053d34f3ab82d42aded
|
7
|
+
data.tar.gz: 2128b65b7c21b420b0e58c5765a9d557e466415fcfa32c80d4b9e9f407e2cb9de8b107f3e6deb81b61f086c0566bad256031aeb310f2676d004488e5af389bda
|
@@ -24,14 +24,14 @@ module WorkShaper
|
|
24
24
|
|
25
25
|
if r == 0
|
26
26
|
r = STATES[state] <=> STATES[other.state]
|
27
|
-
|
27
|
+
WorkShaper.logger.debug "States: #{r} | #{STATES[state]} #{STATES[other.state]}"
|
28
28
|
end
|
29
29
|
|
30
30
|
if r == 0
|
31
31
|
r = @at <=> other.instance_variable_get(:@at)
|
32
|
-
|
32
|
+
WorkShaper.logger.debug "At: #{r}"
|
33
33
|
end
|
34
|
-
|
34
|
+
WorkShaper.logger.debug "Final: #{r}"
|
35
35
|
r
|
36
36
|
end
|
37
37
|
|
data/lib/work_shaper/version.rb
CHANGED