resque_unit 0.2.0 → 0.2.1
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/README.md +3 -2
- data/lib/resque_unit.rb +1 -0
- metadata +3 -3
data/README.md
CHANGED
@@ -75,8 +75,9 @@ Resque-Scheduler Support
|
|
75
75
|
========================
|
76
76
|
|
77
77
|
By calling `require 'resque_unit_scheduler'`, ResqueUnit will provide
|
78
|
-
mocks for resque-scheduler's
|
79
|
-
along with a few extra
|
78
|
+
mocks for [resque-scheduler's](http://github.com/bvandenbos/resque-scheduler)
|
79
|
+
`enqueue_at` and `enqueue_in` methods, along with a few extra
|
80
|
+
assertions. These are used like this:
|
80
81
|
|
81
82
|
Resque.enqueue_in(600, MediumPriorityJob) # enqueues MediumPriorityJob in 600 seconds
|
82
83
|
assert_queued_in(600, MediumPriorityJob) # will pass
|
data/lib/resque_unit.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 1
|
9
|
+
version: 0.2.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Justin Weiss
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-06-10 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|