tribe_em 0.0.6 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -17,3 +17,5 @@ test/version_tmp
17
17
  tmp
18
18
  .rvmrc
19
19
  *.swp
20
+ .ruby-version
21
+ .ruby-gemset
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.
@@ -1,5 +1,5 @@
1
1
  module Tribe
2
2
  module EM
3
- VERSION = '0.0.6'
3
+ VERSION = '0.1.0'
4
4
  end
5
5
  end
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.0.11')
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.6
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-02-16 00:00:00.000000000 Z
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.0.11
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.0.11
29
+ version: '0.2'
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: eventmachine
32
32
  requirement: !ruby/object:Gem::Requirement