class CoreConfig
Attributes
interactor[R]
project[R]
repository[R]
target[R]
Public Class Methods
new(hash)
click to toggle source
# File lib/ccios/config.rb, line 91 def initialize(hash) @project = hash["project"] @target = hash["target"] @interactor = ObjectConfig.new hash["interactor"] @repository = ObjectConfig.new hash["repository"] end