actionpool 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +13 -0
- data/LICENSE +165 -0
- data/README.rdoc +192 -0
- data/Rakefile +74 -0
- data/actionpool.gemspec +15 -0
- data/lib/actionpool/LogHelper.rb +25 -0
- data/lib/actionpool/Pool.rb +282 -0
- data/lib/actionpool/Pool.rb~ +260 -0
- data/lib/actionpool/Queue.rb +53 -0
- data/lib/actionpool/Queue.rb~ +46 -0
- data/lib/actionpool/Thread.rb +155 -0
- data/lib/actionpool/Thread.rb~ +146 -0
- data/lib/actionpool.rb +7 -0
- data/test.rb +7 -0
- data/tests/cases/general.rb +52 -0
- data/tests/cases/general.rb~ +45 -0
- data/tests/cases/grow.rb +24 -0
- data/tests/cases/nogrow.rb +15 -0
- data/tests/cases/queue.rb +34 -0
- data/tests/cases/resize.rb +35 -0
- data/tests/cases/shutdown.rb +36 -0
- data/tests/cases/thread.rb +27 -0
- data/tests/cases/timeouts.rb +37 -0
- data/tests/run_tests.rb +8 -0
- metadata +83 -0
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: actionpool
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- spox
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-01-05 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: The ActionPool is an easy to use thread pool for ruby.
|
17
|
+
email: spox@modspox.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README.rdoc
|
24
|
+
- CHANGELOG
|
25
|
+
files:
|
26
|
+
- lib/actionpool/Pool.rb~
|
27
|
+
- lib/actionpool/LogHelper.rb
|
28
|
+
- lib/actionpool/Pool.rb
|
29
|
+
- lib/actionpool/Thread.rb
|
30
|
+
- lib/actionpool/Queue.rb~
|
31
|
+
- lib/actionpool/Queue.rb
|
32
|
+
- lib/actionpool/Thread.rb~
|
33
|
+
- lib/actionpool.rb
|
34
|
+
- tests/cases/shutdown.rb
|
35
|
+
- tests/cases/nogrow.rb
|
36
|
+
- tests/cases/general.rb
|
37
|
+
- tests/cases/thread.rb
|
38
|
+
- tests/cases/grow.rb
|
39
|
+
- tests/cases/general.rb~
|
40
|
+
- tests/cases/timeouts.rb
|
41
|
+
- tests/cases/resize.rb
|
42
|
+
- tests/cases/queue.rb
|
43
|
+
- tests/run_tests.rb
|
44
|
+
- Rakefile
|
45
|
+
- CHANGELOG
|
46
|
+
- LICENSE
|
47
|
+
- README.rdoc
|
48
|
+
- actionpool.gemspec
|
49
|
+
- test.rb
|
50
|
+
has_rdoc: true
|
51
|
+
homepage: http://github.com/spox/actionpool
|
52
|
+
licenses: []
|
53
|
+
|
54
|
+
post_install_message:
|
55
|
+
rdoc_options:
|
56
|
+
- --title
|
57
|
+
- ActionPool
|
58
|
+
- --main
|
59
|
+
- README.rdoc
|
60
|
+
- --line-numbers
|
61
|
+
require_paths:
|
62
|
+
- lib
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 1.8.6
|
68
|
+
version:
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: "0"
|
74
|
+
version:
|
75
|
+
requirements: []
|
76
|
+
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 1.3.5
|
79
|
+
signing_key:
|
80
|
+
specification_version: 3
|
81
|
+
summary: Thread Pool
|
82
|
+
test_files: []
|
83
|
+
|