class Rundock::Hook::Base
Constants
- HookNotImplementedError
Attributes
contents[R]
name[R]
Public Class Methods
new(name, contents = {})
click to toggle source
# File lib/rundock/hook/base.rb, line 9 def initialize(name, contents = {}) @name = name @contents = contents end
Public Instance Methods
hook(operation_attributes = [], log_buffer = [])
click to toggle source
# File lib/rundock/hook/base.rb, line 14 def hook(operation_attributes = [], log_buffer = []) raise HookNotImplementedError end