class CircleCI::CLI::Command::BrowseCommand

Public Class Methods

run(options) click to toggle source
# 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) click to toggle source
# 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