Class: CircleCI::CLI::Command::BrowseCommand

Inherits:
BaseCommand
  • Object
show all
Defined in:
lib/circleci/cli/command/browse_command.rb

Class Method Summary collapse

Methods inherited from BaseCommand

build_number, project_name, reponame, setup_token, should_be_pretty

Class Method Details

.run(options) ⇒ Object



8
9
10
11
12
13
# File 'lib/circleci/cli/command/browse_command.rb', line 8

def run(options)
  setup_token
  project = project_name(options)
  number = options.build
  Launchy.open url(project, number)
end

.url(project, number) ⇒ Object



15
16
17
18
19
# File 'lib/circleci/cli/command/browse_command.rb', line 15

def url(project, number)
  return "https://circleci.com/gh/#{project}" unless number

  "https://circleci.com/gh/#{project}/#{number}"
end