threadless 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +5 -1
- data/lib/threadless.rb +1 -1
- data/threadless.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('threadless', '0.1.
|
5
|
+
Echoe.new('threadless', '0.1.3') do |p|
|
6
6
|
p.description = "run_later without threads"
|
7
7
|
p.url = "http://github.com/pboy/threadless"
|
8
8
|
p.author = "pboy"
|
@@ -12,3 +12,7 @@ Echoe.new('threadless', '0.1.2') do |p|
|
|
12
12
|
end
|
13
13
|
|
14
14
|
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
|
15
|
+
|
16
|
+
task :default do
|
17
|
+
require "test/test.rb"
|
18
|
+
end
|
data/lib/threadless.rb
CHANGED
data/threadless.gemspec
CHANGED