Class: CC::CLI::Console
Constant Summary collapse
- SHORT_HELP =
"Open a ruby console for the CLI. Useful for developing against the CLI.".freeze
Constants inherited from Command
CC::CLI::Command::CODECLIMATE_YAML, CC::CLI::Command::NAMESPACE
Instance Method Summary collapse
Methods inherited from Command
[], abstract!, abstract?, all, command_name, #execute, #fatal, help, inherited, #initialize, #require_codeclimate_yml, #say, short_help, #success, synopsis, #warn
Constructor Details
This class inherits a constructor from CC::CLI::Command
Instance Method Details
#run ⇒ Object
6 7 8 9 |
# File 'lib/cc/cli/console.rb', line 6 def run require "pry" binding.pry(quiet: true, prompt: Pry::SIMPLE_PROMPT, output: $stdout) end |