thread_tools 0.24 → 0.25
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/Rakefile +10 -0
- data/thread_tools.gemspec +2 -1
- metadata +2 -1
data/Rakefile
ADDED
data/thread_tools.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = %q{thread_tools}
|
3
|
-
s.version = '0.
|
3
|
+
s.version = '0.25'
|
4
4
|
s.summary = %q{Utilities for threaded apps}
|
5
5
|
s.platform = Gem::Platform::RUBY
|
6
6
|
s.email = %q{daniel@tralamazza.com}
|
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.authors = ['Daniel Tralamazza']
|
11
11
|
s.files = [
|
12
12
|
'thread_tools.gemspec',
|
13
|
+
'Rakefile',
|
13
14
|
'README.rdoc',
|
14
15
|
'LICENSE',
|
15
16
|
'lib/thread_tools/threadpool.rb',
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thread_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "0.
|
4
|
+
version: "0.25"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Tralamazza
|
@@ -23,6 +23,7 @@ extra_rdoc_files:
|
|
23
23
|
- README.rdoc
|
24
24
|
files:
|
25
25
|
- thread_tools.gemspec
|
26
|
+
- Rakefile
|
26
27
|
- README.rdoc
|
27
28
|
- LICENSE
|
28
29
|
- lib/thread_tools/threadpool.rb
|