Method: Xcode::Project#global_config

Defined in:
lib/xcode/project.rb

#global_config(name) ⇒ Configuration

Returns the project level configuration with the given name; raise an exception if no configuration exists with that name.

Parameters:

  • name (String, Symbol)

    of the configuration for the project

Returns:

  • (Configuration)

    the project level configuration with the given name; raise an exception if no configuration exists with that name.



105
106
107
# File 'lib/xcode/project.rb', line 105

def global_config(name)
  @project.config(name)
end