rgossip 0.2.0 → 0.2.1
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/rgossip/client.rb +3 -5
- metadata +3 -3
data/lib/rgossip/client.rb
CHANGED
|
@@ -147,11 +147,9 @@ module RGossip
|
|
|
147
147
|
end
|
|
148
148
|
|
|
149
149
|
def each
|
|
150
|
-
@node_list.
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
end
|
|
154
|
-
}
|
|
150
|
+
@node_list.each do |node|
|
|
151
|
+
yield([node.address, node.timestamp, node.data])
|
|
152
|
+
end
|
|
155
153
|
end
|
|
156
154
|
|
|
157
155
|
private
|
metadata
CHANGED