celluloid 0.16.0.pre3 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/celluloid.rb +1 -1
- data/lib/celluloid/cpu_counter.rb +1 -0
- data/lib/celluloid/rspec.rb +4 -3
- data/{spec/support → lib/celluloid/rspec}/actor_examples.rb +0 -0
- data/{spec/support → lib/celluloid/rspec}/example_actor_class.rb +0 -0
- data/{spec/support → lib/celluloid/rspec}/mailbox_examples.rb +0 -0
- data/{spec/support → lib/celluloid/rspec}/task_examples.rb +0 -0
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b9e9584ba72b44bbb2ce23372b0b4b86f2f3687
|
4
|
+
data.tar.gz: 10ec35b6465a1025defe4a697c3108f1982b5f77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9394c33b6d7eff1efa0e0f78d24ff5578ce208dac695d0b7b806c999b47a456253c670783599ae448cb9bb3f6bf455be4ac66705fb399d8e53c3adb72a894250
|
7
|
+
data.tar.gz: f3e2659328cb38517ec107ad32e7c08d8aaa40fece3d74213273d50f703a6cb0878a43616d933b41fb6d061d928f02ba68850d269be32107062bc5e7b162bcc2
|
data/lib/celluloid.rb
CHANGED
data/lib/celluloid/rspec.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
require
|
2
|
-
require
|
3
|
-
require
|
1
|
+
require 'celluloid/rspec/example_actor_class'
|
2
|
+
require 'celluloid/rspec/actor_examples'
|
3
|
+
require 'celluloid/rspec/mailbox_examples'
|
4
|
+
require 'celluloid/rspec/task_examples'
|
4
5
|
|
5
6
|
module Celluloid
|
6
7
|
# Timer accuracy enforced by the tests (50ms)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: celluloid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.0
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tony Arcieri
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: timers
|
@@ -147,6 +147,10 @@ files:
|
|
147
147
|
- lib/celluloid/registry.rb
|
148
148
|
- lib/celluloid/responses.rb
|
149
149
|
- lib/celluloid/rspec.rb
|
150
|
+
- lib/celluloid/rspec/actor_examples.rb
|
151
|
+
- lib/celluloid/rspec/example_actor_class.rb
|
152
|
+
- lib/celluloid/rspec/mailbox_examples.rb
|
153
|
+
- lib/celluloid/rspec/task_examples.rb
|
150
154
|
- lib/celluloid/signals.rb
|
151
155
|
- lib/celluloid/stack_dump.rb
|
152
156
|
- lib/celluloid/supervision_group.rb
|
@@ -187,10 +191,6 @@ files:
|
|
187
191
|
- spec/celluloid/timer_spec.rb
|
188
192
|
- spec/celluloid/uuid_spec.rb
|
189
193
|
- spec/spec_helper.rb
|
190
|
-
- spec/support/actor_examples.rb
|
191
|
-
- spec/support/example_actor_class.rb
|
192
|
-
- spec/support/mailbox_examples.rb
|
193
|
-
- spec/support/task_examples.rb
|
194
194
|
homepage: https://github.com/celluloid/celluloid
|
195
195
|
licenses:
|
196
196
|
- MIT
|
@@ -216,4 +216,3 @@ signing_key:
|
|
216
216
|
specification_version: 4
|
217
217
|
summary: Actor-based concurrent object framework for Ruby
|
218
218
|
test_files: []
|
219
|
-
has_rdoc:
|