Module: Construi::Config

Defined in:
lib/construi/config.rb

Defined Under Namespace

Modules: BuildEnvironment, EnvironmentVariables, Files, Image, Links, Options, Volumes, WrappedYaml Classes: Global, Target

Class Method Summary collapse

Class Method Details

.load(content) ⇒ Object



182
183
184
# File 'lib/construi/config.rb', line 182

def self.load(content)
  Global.new YAML.load(content)
end

.load_file(path) ⇒ Object



186
187
188
# File 'lib/construi/config.rb', line 186

def self.load_file(path)
  Global.new YAML.load_file(path)
end