stalk_climber 0.0.5 → 0.0.6
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.
- data/lib/stalk_climber/job.rb +1 -1
- data/lib/stalk_climber/version.rb +1 -1
- data/test/unit/job_test.rb +1 -0
- metadata +1 -1
data/lib/stalk_climber/job.rb
CHANGED
@@ -4,7 +4,7 @@ module StalkClimber
|
|
4
4
|
class Job
|
5
5
|
|
6
6
|
STATS_ATTRIBUTES = %w[age buries delay kicks pri releases reserves state time-left timeouts ttr tube]
|
7
|
-
HASH_ATTRIBUTES = (STATS_ATTRIBUTES + %w[body id]).sort!.map!(&:to_sym)
|
7
|
+
HASH_ATTRIBUTES = (STATS_ATTRIBUTES + %w[body connection id]).sort!.map!(&:to_sym)
|
8
8
|
attr_reader :id
|
9
9
|
|
10
10
|
STATS_ATTRIBUTES.each do |method_name|
|
data/test/unit/job_test.rb
CHANGED