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.
Files changed (3) hide show
  1. data/Rakefile +10 -0
  2. data/thread_tools.gemspec +2 -1
  3. metadata +2 -1
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require 'rake'
2
+
3
+ task :default => [:test_units]
4
+
5
+ desc "Run all test cases"
6
+ task :test_units do
7
+ require 'rake/runtest'
8
+ Rake.run_tests 'test/test_*.rb'
9
+ end
10
+
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.24'
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.24"
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