tribe_em 0.0.6 → 0.1.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.
- data/.gitignore +2 -0
- data/README.md +1 -1
- data/lib/tribe_em/version.rb +1 -1
- data/tribe_em.gemspec +1 -1
- metadata +6 -6
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -56,7 +56,7 @@ Communication between EventMachine and the Tribe actor system is provided by Tri
|
|
56
56
|
Tribe EM has native TCP server and connection classes built in.
|
57
57
|
Other protocol implementations can be found below.
|
58
58
|
Note that some impmementations are marked as native while others are marked as wrappers.
|
59
|
-
Native implementations are specifically designed to for Tribe EM and thus push most to the actor threads.
|
59
|
+
Native implementations are specifically designed to for Tribe EM and thus push most work to the actor threads.
|
60
60
|
Wrapper implementations wrap existing EM libraries and usually do more work in the EM thread.
|
61
61
|
This means that native implmentations (when used with real threads via JRuby) will scale better on multi-core systems.
|
62
62
|
None of this really matters much with MRI Ruby since it has a global interpretter lock.
|
data/lib/tribe_em/version.rb
CHANGED
data/tribe_em.gemspec
CHANGED
@@ -17,6 +17,6 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
18
|
gem.require_paths = ['lib']
|
19
19
|
|
20
|
-
gem.add_dependency('tribe', '0.
|
20
|
+
gem.add_dependency('tribe', '~> 0.2')
|
21
21
|
gem.add_dependency('eventmachine', '>= 1.0.0')
|
22
22
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tribe_em
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,24 +9,24 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-05-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: tribe
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
21
|
+
version: '0.2'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: '0.2'
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: eventmachine
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|