Method: Gem::Tasks::Task#bundle

Defined in:
lib/rubygems/tasks/task.rb

#bundle(command, *arguments) ⇒ Boolean (protected)

Runs a bundle command.

Parameters:

  • command (String)

    The bundle command to run.

  • arguments (Array<String>)

    Additional arguments for the command.

Returns:

  • (Boolean)

    Specifies whether the command was successful.

[View source]

93
94
95
# File 'lib/rubygems/tasks/task.rb', line 93

def bundle(command,*arguments)
  run 'bundler', command, *arguments
end