activequeue 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -23,6 +23,8 @@ end
23
23
  With ActiveQueue you can send any job to the configured queue like so
24
24
 
25
25
  ActiveQueue::Queue.enqueue(Jobs::ExampleJob,'bar')
26
+ or
27
+ ActiveQueue::Queue.enqueue(Jobs::MultiParamExampleJob,{:foo => 'bar',:foe => 'four', :fum => 'tail'})
26
28
 
27
29
 
28
30
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activequeue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Jording
@@ -25,7 +25,6 @@ files:
25
25
  - lib/active_queue/adapters/delayed_job_adapter.rb
26
26
  - lib/active_queue/adapters/dummy_adapter.rb
27
27
  - lib/active_queue/adapters/resque_adapter.rb
28
- - lib/active_queue/jobs.rb
29
28
  - lib/activequeue.rb
30
29
  - README.markdown
31
30
  has_rdoc: true
@@ -1,10 +0,0 @@
1
-
2
- module Jobs
3
- class ExampleJob < Struct.new(:foo)
4
- def perform
5
- true
6
- end
7
- end
8
-
9
-
10
- end