Class: Xcode::PBXProj
- Inherits:
-
Object
- Object
- Xcode::PBXProj
- Includes:
- PBXFormatter
- Defined in:
- lib/xcode/pbx_proj.rb
Instance Attribute Summary collapse
-
#groups ⇒ Object
readonly
Returns the value of attribute groups.
-
#project ⇒ Object
readonly
Returns the value of attribute project.
Instance Method Summary collapse
- #attributes ⇒ Object
-
#initialize(name) ⇒ PBXProj
constructor
A new instance of PBXProj.
Methods included from PBXFormatter
Constructor Details
#initialize(name) ⇒ PBXProj
Returns a new instance of PBXProj.
6 7 8 9 |
# File 'lib/xcode/pbx_proj.rb', line 6 def initialize(name) @name = name @groups = [] end |
Instance Attribute Details
#groups ⇒ Object (readonly)
Returns the value of attribute groups.
4 5 6 |
# File 'lib/xcode/pbx_proj.rb', line 4 def groups @groups end |
#project ⇒ Object (readonly)
Returns the value of attribute project.
4 5 6 |
# File 'lib/xcode/pbx_proj.rb', line 4 def project @project end |