celluloid 0.16.0.pre3 → 0.16.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f7aa9e5aa8ef9c2cd0aaabdde975d786214410b
4
- data.tar.gz: 993cfb53e3ec7f1c24308bf2339e2e60b63f21df
3
+ metadata.gz: 6b9e9584ba72b44bbb2ce23372b0b4b86f2f3687
4
+ data.tar.gz: 10ec35b6465a1025defe4a697c3108f1982b5f77
5
5
  SHA512:
6
- metadata.gz: 50e59017b92d0f00ff20d1f6a9e8ec436ca751e126df040d3f232d6e96bce43b532e666288f664b5cf2fc19c9bc12ccb45abcac0a6c09c72f0fc33eeb813ccbc
7
- data.tar.gz: 95ec24381ebc52700045ecd4aeca559b7f2e4a304526d06198222eb357082dae0c1615afc9612741ca86b2308ff2f3dd0e2f77fae39078387eb3ae2901ba424c
6
+ metadata.gz: 9394c33b6d7eff1efa0e0f78d24ff5578ce208dac695d0b7b806c999b47a456253c670783599ae448cb9bb3f6bf455be4ac66705fb399d8e53c3adb72a894250
7
+ data.tar.gz: f3e2659328cb38517ec107ad32e7c08d8aaa40fece3d74213273d50f703a6cb0878a43616d933b41fb6d061d928f02ba68850d269be32107062bc5e7b162bcc2
@@ -7,7 +7,7 @@ module Celluloid
7
7
  # Expose all instance methods as singleton methods
8
8
  extend self
9
9
 
10
- VERSION = '0.16.0.pre3'
10
+ VERSION = '0.16.0'
11
11
 
12
12
  # Linking times out after 5 seconds
13
13
  LINKING_TIMEOUT = 5
@@ -27,6 +27,7 @@ module Celluloid
27
27
  def from_sysctl
28
28
  result = `sysctl -n hw.ncpu`
29
29
  result if $?.success?
30
+ rescue Errno::ENOENT
30
31
  end
31
32
  end
32
33
  end
@@ -1,6 +1,7 @@
1
- require File.expand_path('../../../spec/support/example_actor_class', __FILE__)
2
- require File.expand_path('../../../spec/support/actor_examples', __FILE__)
3
- require File.expand_path('../../../spec/support/mailbox_examples', __FILE__)
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)
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.pre3
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-07-27 00:00:00.000000000 Z
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: