Class: FluentCommandBuilder::XCodeBuild::V44::Version
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::XCodeBuild::V44::Version
- Defined in:
- lib/fluent_command_builder/command_builders/xcodebuild_44.rb
Instance Method Summary collapse
- #info_item(info_item) {|@b| ... } ⇒ Object
-
#initialize(underlying_builder) ⇒ Version
constructor
A new instance of Version.
- #sdk(sdk_name) {|@b| ... } ⇒ Object
Methods inherited from CommandBase
Constructor Details
#initialize(underlying_builder) ⇒ Version
Returns a new instance of Version.
308 309 310 311 |
# File 'lib/fluent_command_builder/command_builders/xcodebuild_44.rb', line 308 def initialize() super @b.append ' -version' end |
Instance Method Details
#info_item(info_item) {|@b| ... } ⇒ Object
317 318 319 320 321 |
# File 'lib/fluent_command_builder/command_builders/xcodebuild_44.rb', line 317 def info_item(info_item) @b.append " #{@b.format info_item}" yield @b if block_given? self end |
#sdk(sdk_name) {|@b| ... } ⇒ Object
312 313 314 315 316 |
# File 'lib/fluent_command_builder/command_builders/xcodebuild_44.rb', line 312 def sdk(sdk_name) @b.append " -sdk #{@b.format sdk_name}" yield @b if block_given? self end |