class RBatch::ConfigElementArray

Public Class Methods

new(array) click to toggle source
# File lib/rbatch/config.rb, line 77
def initialize(array)
  array.each_with_index do |item,index|
    self[index] = Config.parse(item)
  end
end