Module: FluentCommandBuilder::Bundle::V11

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

Defined Under Namespace

Classes: Bundle, Cache, Check, Clean, Gem, Init, Install, Outdated, Package, Show, Update, Viz

Constant Summary collapse

COMMAND_NAME =
'bundle'

Instance Method Summary collapse

Instance Method Details

#bundle {|builder| ... } ⇒ Object

Yields:

  • (builder)


302
303
304
305
306
307
# File 'lib/fluent_command_builder/command_builders/bundle_11.rb', line 302

def bundle
  builder = CommandBuilder.new COMMAND_NAME
  command = Bundle.new builder
  yield builder if block_given?
  command
end