Class: Gerrit::Command::Console

Inherits:
Base
  • Object
show all
Defined in:
lib/gerrit/command/console.rb

Overview

Open console for playing around with helpers exposed to other commands.

This is intended to be used to aid in building and debugging commands.

Instance Method Summary collapse

Methods inherited from Base

#execute_command, from_arguments, #initialize, #run

Methods included from Utils

camel_case, commit_hash?, human_time, map_in_parallel, snake_case

Constructor Details

This class inherits a constructor from Gerrit::Command::Base

Instance Method Details

#executeObject



6
7
8
9
# File 'lib/gerrit/command/console.rb', line 6

def execute
  require 'pry'
  binding.pry
end