journeta 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/README.txt +12 -0
  3. data/lib/journeta/version.rb +1 -1
  4. metadata +1 -1
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.0.5 2008-08-22
2
+
3
+ * Documentation updates.
4
+
1
5
  == 0.0.4 2008-08-22
2
6
 
3
7
  * Graphical instant messenger example.
data/README.txt CHANGED
@@ -14,6 +14,7 @@ the wire in YAML form, any arbitrary Ruby object can be sent to peers, provided
14
14
  * Do not have a firewall preventing network I/O.
15
15
 
16
16
  Journeta uses Ruby threading to manage the asynchonous nature of peer-to-peer I/O.
17
+ Data you send from your application thread will be queued and sent asynrchonously as soon as possible.
17
18
  For insight into events internal to the library, start ruby with the `--debug` options.
18
19
 
19
20
 
@@ -27,7 +28,18 @@ For insight into events internal to the library, start ruby with the `--debug` o
27
28
  Everything you type will automatically be sent to all other instances on the LAN!
28
29
  Use `ruby --debug examples/instant_messenger.rb` for detailed internal event details.
29
30
 
31
+ examples/instant_messenger_gui.rb
30
32
 
33
+ A GUI version of the above client. Require the wxruby gem. (`sudo gem install wxruby`)
34
+
35
+ examples/queue_server.rb
36
+ examples/queue_client.rb
37
+
38
+ A simple queue managed by a server. Each client produces jobs to be queued, and processes jobs
39
+ sent from the server(s). All nodes automatically find eachother. Try running multiples clients,
40
+ and then multiple servers. Notice that when you have N servers, each job gets run N times,
41
+ and not necessarilly by the same client!
42
+
31
43
  == Author
32
44
 
33
45
  Preston Lee <preston.lee at openrain d0t com>
@@ -2,7 +2,7 @@ module Journeta #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 4
5
+ TINY = 5
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: journeta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Preston Lee