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