class ActionsPluginBase

Base class to setup config and logger

Attributes

conf[R]
logger[R]
options[R]

Public Class Methods

generate(logger, options = {}, conf = Conf) click to toggle source
# File lib/core/actions_plugin_base.rb, line 16
def self.generate(logger, options = {}, conf = Conf)
  new logger, options, conf
end
new(logger, options = {}, conf = Conf) click to toggle source
# File lib/core/actions_plugin_base.rb, line 10
def initialize(logger, options = {}, conf = Conf)
  @logger = logger
  @options = options
  @conf = conf
end