Class: Travis::CLI::Show
- Inherits:
-
RepoCommand
- Object
- Command
- ApiCommand
- RepoCommand
- Travis::CLI::Show
- Defined in:
- lib/travis/cli/show.rb
Constant Summary
Constants inherited from RepoCommand
Instance Attribute Summary
Attributes inherited from RepoCommand
Attributes inherited from ApiCommand
Attributes inherited from Command
#arguments, #config, #force_interactive, #formatter, #input, #output
Instance Method Summary collapse
Methods inherited from RepoCommand
Methods inherited from ApiCommand
#authenticate, #detected_endpoint?, #endpoint_config, #initialize, #org?, #pro?, #setup, #sync
Methods included from Travis::Client::Methods
#access_token, #access_token=, #api_endpoint, #api_endpoint=, #artifact, #build, #explicit_api_endpoint?, #github_auth, #job, #repo, #repos, #restart, #user, #worker, #workers
Methods inherited from Command
abstract, abstract?, command_name, #command_name, #debug, #execute, #help, #initialize, #parse, #say, #setup, skip, #terminal, #usage, #write_to
Methods included from Parser
Constructor Details
This class inherits a constructor from Travis::CLI::ApiCommand
Instance Method Details
#run(number = last_build.number) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/travis/cli/show.rb', line 6 def run(number = last_build.number) entity = job(number) || build(number) error "unknown build or job #{number}" unless entity say template(__FILE__) % [ entity.class.one.capitalize, entity.number, entity.commit.subject, entity.state, entity.color, entity.pull_request? ? "pull request" : "push", entity.branch_info, entity.commit.compare_url, formatter.duration(entity.duration), formatter.time(entity.started_at), formatter.time(entity.finished_at) ] if entity.respond_to? :jobs empty_line entity.jobs.each do |job| say [ color("##{job.number} #{job.state}:".ljust(16), [job.color, :bold]), formatter.duration(job.duration).ljust(14), formatter.job_config(job.config), (color("(failure allowed)", :info) if job.allow_failures?) ].compact.join(" ").rstrip end else config = formatter.job_config(entity.config) say color("Allow Failure: ", :info) + entity.allow_failures?.inspect say color("Config: ", :info) + config unless config.empty? end end |