Method: FluentCommandBuilder::NuGet::V21::Install#source

Defined in:
lib/fluent_command_builder/command_builders/nuget_21.rb

#source(source) {|@b| ... } ⇒ Object

Yields:

  • (@b)


160
161
162
163
164
# File 'lib/fluent_command_builder/command_builders/nuget_21.rb', line 160

def source(source)
  @b.append " -Source #{@b.format source}"
  yield @b if block_given?
  self
end