module Bumbleworks::Task::Base

Public Instance Methods

after_claim(token) click to toggle source
# File lib/bumbleworks/task/base.rb, line 11
def after_claim(token); end
after_complete(params) click to toggle source
# File lib/bumbleworks/task/base.rb, line 8
def after_complete(params); end
after_dispatch() click to toggle source
# File lib/bumbleworks/task/base.rb, line 16
def after_dispatch; end
after_release(token) click to toggle source
# File lib/bumbleworks/task/base.rb, line 14
def after_release(token); end
after_update(params) click to toggle source
# File lib/bumbleworks/task/base.rb, line 5
def after_update(params); end
before_claim(token) click to toggle source
# File lib/bumbleworks/task/base.rb, line 10
def before_claim(token); end
before_complete(params) click to toggle source
# File lib/bumbleworks/task/base.rb, line 7
def before_complete(params); end
before_release(token) click to toggle source
# File lib/bumbleworks/task/base.rb, line 13
def before_release(token); end
before_update(params) click to toggle source
# File lib/bumbleworks/task/base.rb, line 4
def before_update(params); end
completable?() click to toggle source
# File lib/bumbleworks/task/base.rb, line 18
def completable?
  true
end
not_completable_error_message() click to toggle source
# File lib/bumbleworks/task/base.rb, line 22
def not_completable_error_message
  "This task is not currently completable."
end