Class: Xcodeproj::XCScheme::AnalyzeAction
- Inherits:
-
AbstractSchemeAction
- Object
- XMLElementWrapper
- AbstractSchemeAction
- Xcodeproj::XCScheme::AnalyzeAction
- Defined in:
- lib/xcodeproj/scheme/analyze_action.rb
Overview
This class wraps the AnalyzeAction node of a .xcscheme XML file
Instance Attribute Summary
Attributes inherited from XMLElementWrapper
Instance Method Summary collapse
-
#initialize(node = nil) ⇒ AnalyzeAction
constructor
A new instance of AnalyzeAction.
Methods inherited from AbstractSchemeAction
#add_post_action, #add_pre_action, #build_configuration, #build_configuration=, #post_actions, #post_actions=, #pre_actions, #pre_actions=
Methods inherited from XMLElementWrapper
Constructor Details
#initialize(node = nil) ⇒ AnalyzeAction
Returns a new instance of AnalyzeAction.
12 13 14 15 16 |
# File 'lib/xcodeproj/scheme/analyze_action.rb', line 12 def initialize(node = nil) create_xml_element_with_fallback(node, 'AnalyzeAction') do self.build_configuration = 'Debug' end end |