class Circler::BuildCommand

Public Class Methods

run(options) click to toggle source
# File lib/circler/command/build_command.rb, line 6
def run(options)
  setup_token
  username, reponame = project_name(options).split('/')
  number = build_number(options)
  build = Build.get(username, reponame, number)
  say StepPrinter.new(build.steps).to_s
end