class DataConfig

Attributes

project[R]
repository[R]
target[R]

Public Class Methods

new(hash) click to toggle source
# File lib/ccios/config.rb, line 102
def initialize(hash)
  @project = hash["project"]
  @target = hash["target"]
  @repository = ObjectConfig.new hash["repository"]
end