Method: Xcodeproj::Workspace::GroupReference#initialize
- Defined in:
- lib/xcodeproj/workspace/group_reference.rb
#initialize(name, type = 'container', location = '') ⇒ GroupReference
Returns a new instance of GroupReference.
20 21 22 23 24 |
# File 'lib/xcodeproj/workspace/group_reference.rb', line 20 def initialize(name, type = 'container', location = '') @name = name.to_s @type = type.to_s @location = location.to_s end |