class Rundock::Target::Base

Constants

TargetNotImplementedError

Attributes

contents[R]
name[R]
parsed_options[R]

Public Class Methods

new(name, contents = {}) click to toggle source
# File lib/rundock/target/base.rb, line 10
def initialize(name, contents = {})
  @name = name
  @contents = contents
  @parsed_options = {}
end

Public Instance Methods

create_nodes(target_info = {}, options = {}) click to toggle source
# File lib/rundock/target/base.rb, line 16
def create_nodes(target_info = {}, options = {})
  raise TargetNotImplementedError
end