Method: CIRunner::Configuration::Project#load!
- Defined in:
- lib/ci_runner/configuration/project.rb
#load! ⇒ void
This method returns an undefined value.
Load the configuration file from the project into memory.
45 46 47 |
# File 'lib/ci_runner/configuration/project.rb', line 45 def load! @yaml_config = config_file.exist? ? YAML.safe_load(config_file.read, permitted_classes: [Regexp]) : {} end |