lib/travis/cli/branches.rb in travis-1.11.1 vs lib/travis/cli/branches.rb in travis-1.12.0

- old
+ new

@@ -1,25 +1,27 @@ +# frozen_string_literal: true + require 'travis/cli' module Travis module CLI class Branches < RepoCommand - description "displays the most recent build for each branch" + description 'displays the most recent build for each branch' def run repository.last_on_branch.each do |build| say [ - color("#{build.branch_info}:".ljust(longest + 2), [:info, :bold]), + color("#{build.branch_info}:".ljust(longest + 2), %i[info bold]), color("##{build.number.to_s.ljust(4)} #{build.state}".ljust(16), build.color), build.commit.subject - ].join(" ").strip + "\n" + ].join(' ').strip + "\n" end end private - def longest - repository.branches.keys.map { |b| b.size }.max - end + def longest + repository.branches.keys.map { |b| b.size }.max + end end end end