Class: Xcake::ProjectMetadataGenerator
- Defined in:
- lib/xcake/generator/project_metadata_generator.rb
Instance Attribute Summary
Attributes inherited from Generator
Instance Method Summary collapse
Methods inherited from Generator
Methods included from CoreExtensions::ClassDescendants
Methods included from Visitor
Methods included from Plugin
Methods included from Dependency
Constructor Details
This class inherits a constructor from Xcake::Generator
Instance Method Details
#visit_project(project) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/xcake/generator/project_metadata_generator.rb', line 3 def visit_project(project) EventHooks.run_hook :before_creating_xcode_project native_project = @context.native_object_for(project) native_project.class_prefix = project.class_prefix if project.class_prefix native_project.organization = project.organization if project.organization end |