journeta 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +0 -5
- data/lib/journeta/version.rb +1 -1
- metadata +1 -3
- data/HISTORY +0 -83
- data/License.txt +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 361941ea5e08ddd7fcfa59e3adafd5e31666606b
|
4
|
+
data.tar.gz: 02e58991533c2a50f6fca39d681add1293f0a6fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13eb6ad992d707d1212756d6da29505daa045d13e650fa9292548874fc97b8c39f54e2848d4e75fe1e061423060b081caa266a68013c310709673fb5c6265c52
|
7
|
+
data.tar.gz: 76eec4ec9b144dcac290b17d1a88c9e18a3de0e9c0c36c1fcac216d424692c4e046448a7dcaab9301e83cd874396d00f486ddeb8992a5880695907e7cb9c9496
|
data/README.rdoc
CHANGED
data/lib/journeta/version.rb
CHANGED
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: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Preston Lee
|
@@ -72,9 +72,7 @@ extensions: []
|
|
72
72
|
extra_rdoc_files: []
|
73
73
|
files:
|
74
74
|
- ".gitignore"
|
75
|
-
- HISTORY
|
76
75
|
- LICENSE
|
77
|
-
- License.txt
|
78
76
|
- README.rdoc
|
79
77
|
- Rakefile
|
80
78
|
- bin/journeta_instant_messenger.rb
|
data/HISTORY
DELETED
@@ -1,83 +0,0 @@
|
|
1
|
-
== 0.2.2 2011.03.17
|
2
|
-
|
3
|
-
* Quick packaging and documentation fixes.
|
4
|
-
|
5
|
-
== 0.2.1 2011.03.17
|
6
|
-
|
7
|
-
* Quick packaging and documentation fixes.
|
8
|
-
|
9
|
-
== 0.2.0 2011.03.17
|
10
|
-
|
11
|
-
* JRuby 1.6 finally support! And with fully native threads!!!
|
12
|
-
* Ruby 1.9 support. (Also with native threads.)
|
13
|
-
* Ruby 1.8 no longer active supported. (Never worked well on the old MRI, anyway.)
|
14
|
-
* Documentation updates and fixes.
|
15
|
-
* Protocol-compatible with 0.1.x series.
|
16
|
-
* Moving to "jeweler"-style packaging.
|
17
|
-
* Refactoring versioning.
|
18
|
-
* Still no great way to write deterministic tests for threaded components. :( (Help!)
|
19
|
-
|
20
|
-
== 0.1.7 2008-10-29
|
21
|
-
* Added JournetaEngine#known_peers_in_group(group_name), which returns a hash {uuid => peer} of peers in that group.
|
22
|
-
|
23
|
-
== 0.1.6 2008-10-21
|
24
|
-
|
25
|
-
* CRITICAL LIVELOCK FIX. DO NOT USE 0.1.4 AND 0.1.3.
|
26
|
-
* Added support for :peer_registered_handler.
|
27
|
-
* Added support for :peer_unregistered_handler.
|
28
|
-
* Added support for :peer_updated_handler.
|
29
|
-
|
30
|
-
== 0.1.2 2008-09-08
|
31
|
-
|
32
|
-
* Preemptive peer reaping. Peers now automatically "expire" from the local registry when they haven't been heard from in a while.
|
33
|
-
* Non-significant fixes.
|
34
|
-
|
35
|
-
|
36
|
-
== 0.1.1 2008-09-05
|
37
|
-
|
38
|
-
* Figuring out how to deploy properly with hoe :)
|
39
|
-
|
40
|
-
== 0.1.0 2008-09-05
|
41
|
-
|
42
|
-
* Renamed Journeta::JournetaEngine to Journeta::Engine
|
43
|
-
* Added Engine.known_peers
|
44
|
-
* Peer handler interface changed from 'handle(event)' to 'call(event)' to support raw Proc objects.
|
45
|
-
* journeta_network_status.rb
|
46
|
-
* Documentation updates.
|
47
|
-
|
48
|
-
== 0.0.5 2008-08-22
|
49
|
-
|
50
|
-
* Documentation updates.
|
51
|
-
|
52
|
-
== 0.0.4 2008-08-22
|
53
|
-
|
54
|
-
* Graphical instant messenger example.
|
55
|
-
* journeta_instant_messenger_gui.rb (requires the wxruby gem)
|
56
|
-
* Will talk to the command line example seemlessly.
|
57
|
-
* Linux bug fixes.
|
58
|
-
* Ruby 1.8.6 support
|
59
|
-
|
60
|
-
== 0.0.3 2008-08-21
|
61
|
-
|
62
|
-
* Linux support.
|
63
|
-
* Added peer 'groups' support to avoid peer message spamming.
|
64
|
-
* Major refactoring to make outbound messages sent asynchonously to the sending thread.
|
65
|
-
* Example and documentation updates.
|
66
|
-
* Shared network queue example added!
|
67
|
-
* journeta_queue_client.rb
|
68
|
-
* journeta_queue_server.rb
|
69
|
-
* Renaming..
|
70
|
-
* Session -> Peer
|
71
|
-
* Event -> Presence
|
72
|
-
|
73
|
-
== 0.0.2 2008-08-19
|
74
|
-
|
75
|
-
* First working RubyForge release:
|
76
|
-
* See README.txt for general info.
|
77
|
-
* Adding functional chat room example. (See journeta_)
|
78
|
-
|
79
|
-
== 0.0.1 2007-07-25
|
80
|
-
|
81
|
-
* Initial release:
|
82
|
-
* Basic port from original Java code.
|
83
|
-
* NOT YET FUNCTIONAL!
|
data/License.txt
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
Copyright (c) 2011, Preston Lee Ventures, LLC. All rights reserved.
|
2
|
-
|
3
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4
|
-
|
5
|
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
6
|
-
|
7
|
-
-Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
8
|
-
|
9
|
-
-Neither the name of the Preston Lee Ventures, LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
10
|
-
|
11
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|