Class: FluentCommandBuilder::TeamFoundationTEE::V100::Eula

Inherits:
CommandBase
  • Object
show all
Defined in:
lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb

Instance Method Summary collapse

Methods inherited from CommandBase

#configure!, #execute!, #to_s

Constructor Details

#initialize(underlying_builder) ⇒ Eula



734
735
736
737
# File 'lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb', line 734

def initialize(underlying_builder)
  super underlying_builder
  @b.append ' eula'
end

Instance Method Details

#accept {|@b| ... } ⇒ Object

Yields:

  • (@b)


738
739
740
741
742
# File 'lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb', line 738

def accept
  @b.append ' -accept'
  yield @b if block_given?
  self
end