class ARII::SeedReader

Seed Reader

Main seed reading class, passing data for seeds to agent, to be inherited by SQL, File and URL templates

Attributes

agent[RW]
objects[RW]
seed[RW]

Public Class Methods

new(agent, seed) click to toggle source
# File lib/arii/seedreader.rb, line 13
def initialize agent, seed
  @agent = agent
  @help = ARII::Helper.new
  @seed = seed
  @objects = Array.new
  # puts "\t\tSeed: #{@seed[:identifier]}"
end