Class: Travis::CLI::Console
- Inherits:
-
ApiCommand
- Object
- Command
- ApiCommand
- Travis::CLI::Console
- Defined in:
- lib/travis/cli/console.rb
Constant Summary
Constants inherited from Command
Travis::CLI::Command::DAY, Travis::CLI::Command::HOUR, Travis::CLI::Command::MINUTE, Travis::CLI::Command::WEEK
Constants included from Tools::Assets
Instance Attribute Summary
Attributes inherited from ApiCommand
Attributes inherited from Command
#arguments, #config, #debug, #force_interactive, #formatter, #input, #output
Instance Method Summary collapse
Methods inherited from ApiCommand
#authenticate, #detected_endpoint?, #endpoint_config, #enterprise?, #initialize, #org?, #pro?, #setup, #sync
Methods included from Travis::Client::Methods
#access_token, #access_token=, #account, #accounts, #api_endpoint, #api_endpoint=, #artifact, #broadcasts, #build, #cancel, #explicit_api_endpoint?, #github_auth, #hooks, #job, #lint, #listen, #repo, #repos, #restart, #user
Methods inherited from Command
abstract, abstract?, #check_completion, #check_ruby, #check_version, command_name, #command_name, #debug?, description, #execute, #help, #info, #initialize, #last_check, #on_signal, #parse, #say, #setup, skip, subcommands, #terminal, #time, #usage, #usage_for, #write_to
Methods included from Tools::Assets
Methods included from Parser
Constructor Details
This class inherits a constructor from Travis::CLI::ApiCommand
Instance Method Details
#run ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/travis/cli/console.rb', line 12 def run return unless pry_installed? Object.send(:include, Client::Namespace.new(session)) hooks = defined?(Pry::Hooks) ? Pry::Hooks.new : {} binding.pry(:quiet => true, :prompt => Pry::SIMPLE_PROMPT, :output => $stdout, :hooks => hooks) end |