rgossip 0.1.9 → 0.2.0

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.
Files changed (2) hide show
  1. data/lib/rgossip/nodes.rb +1 -1
  2. metadata +12 -10
data/lib/rgossip/nodes.rb CHANGED
@@ -28,7 +28,7 @@ module RGossip
28
28
  else
29
29
  chunks << nodes.map {|i| i.to_a }.to_msgpack
30
30
  nodes.clear
31
- datasum.clear
31
+ datasum.replace('')
32
32
  end
33
33
  end
34
34
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rgossip
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1
9
- - 9
10
- version: 0.1.9
8
+ - 2
9
+ - 0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - winebarrel
@@ -15,7 +15,8 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-05-23 00:00:00 Z
18
+ date: 2011-05-25 00:00:00 +09:00
19
+ default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
22
  name: msgpack
@@ -41,13 +42,14 @@ extra_rdoc_files: []
41
42
 
42
43
  files:
43
44
  - README
44
- - lib/rgossip/timer.rb
45
- - lib/rgossip/gossipper.rb
46
45
  - lib/rgossip/client.rb
47
- - lib/rgossip/receiver.rb
48
- - lib/rgossip/nodes.rb
46
+ - lib/rgossip/gossipper.rb
49
47
  - lib/rgossip/node.rb
48
+ - lib/rgossip/nodes.rb
49
+ - lib/rgossip/receiver.rb
50
+ - lib/rgossip/timer.rb
50
51
  - lib/rgossip.rb
52
+ has_rdoc: true
51
53
  homepage: https://bitbucket.org/winebarrel/rgossip
52
54
  licenses: []
53
55
 
@@ -77,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
79
  requirements: []
78
80
 
79
81
  rubyforge_project:
80
- rubygems_version: 1.8.1
82
+ rubygems_version: 1.4.2
81
83
  signing_key:
82
84
  specification_version: 3
83
85
  summary: Basic implementation of a gossip protocol. This is a porting of Java implementation. see http://code.google.com/p/gossip-protocol-java/