Module: Resque::Plugin
Constant Summary collapse
- LintError =
Class.new(RuntimeError)
Instance Method Summary collapse
-
#after_enqueue_hooks(job) ⇒ Object
Given an object, returns a list
after_enqueuehook names. -
#after_hooks(job) ⇒ Object
Given an object, returns a list
after_performhook names. -
#around_hooks(job) ⇒ Object
Given an object, returns a list
around_performhook names. -
#before_hooks(job) ⇒ Object
Given an object, returns a list
before_performhook names. -
#failure_hooks(job) ⇒ Object
Given an object, returns a list
on_failurehook names. -
#lint(plugin) ⇒ Object
Ensure that your plugin conforms to good hook naming conventions.
Instance Method Details
#after_enqueue_hooks(job) ⇒ Object
Given an object, returns a list after_enqueue hook names.
47 48 49 |
# File 'lib/resque/plugin.rb', line 47 def after_enqueue_hooks(job) job.methods.grep(/^after_enqueue/).sort end |
#after_hooks(job) ⇒ Object
Given an object, returns a list after_perform hook names.
37 38 39 |
# File 'lib/resque/plugin.rb', line 37 def after_hooks(job) job.methods.grep(/^after_perform/).sort end |
#around_hooks(job) ⇒ Object
Given an object, returns a list around_perform hook names.
32 33 34 |
# File 'lib/resque/plugin.rb', line 32 def around_hooks(job) job.methods.grep(/^around_perform/).sort end |
#before_hooks(job) ⇒ Object
Given an object, returns a list before_perform hook names.
27 28 29 |
# File 'lib/resque/plugin.rb', line 27 def before_hooks(job) job.methods.grep(/^before_perform/).sort end |
#failure_hooks(job) ⇒ Object
Given an object, returns a list on_failure hook names.
42 43 44 |
# File 'lib/resque/plugin.rb', line 42 def failure_hooks(job) job.methods.grep(/^on_failure/).sort end |
#lint(plugin) ⇒ Object
Ensure that your plugin conforms to good hook naming conventions.
Resque::Plugin.lint(MyResquePlugin)
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/resque/plugin.rb', line 10 def lint(plugin) hooks = before_hooks(plugin) + around_hooks(plugin) + after_hooks(plugin) hooks.each do |hook| if hook =~ /perform$/ raise LintError, "#{plugin}.#{hook} is not namespaced" end end failure_hooks(plugin).each do |hook| if hook =~ /failure$/ raise LintError, "#{plugin}.#{hook} is not namespaced" end end end |