Sha256: 87395a94d7d5bcd5c5f02af55f1a592a6f99f28d0673ad0d8f37ef28be5f7d54

Contents?: true

Size: 614 Bytes

Versions: 386

Compression:

Stored size: 614 Bytes

Contents

require 'travis/cli'

module Travis
  module CLI
    class Branches < RepoCommand
      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.number.to_s.ljust(4)} #{build.state}".ljust(16), build.color),
            build.commit.subject
          ].join(" ").strip + "\n"
        end
      end

      private

        def longest
          repository.branches.keys.map { |b| b.size }.max
        end
    end
  end
end

Version data entries

386 entries across 386 versions & 3 rubygems

Version Path
travis-1.8.14.travis.1178.9 lib/travis/cli/branches.rb
travis-1.8.14.travis.1175.9 lib/travis/cli/branches.rb
travis-1.8.14.travis.1172.9 lib/travis/cli/branches.rb
travis-1.8.14.travis.1164.9 lib/travis/cli/branches.rb
travis-1.8.14.travis.1163.9 lib/travis/cli/branches.rb
travis-1.8.14.travis.1162.9 lib/travis/cli/branches.rb
travis-1.8.14.travis.1160.9 lib/travis/cli/branches.rb
travis-1.8.13 lib/travis/cli/branches.rb
travis-1.8.14.travis.1156.9 lib/travis/cli/branches.rb
travis-1.8.14.travis.1155.9 lib/travis/cli/branches.rb
travis-1.8.13.travis.1152.9 lib/travis/cli/branches.rb
travis-1.8.13.travis.1148.9 lib/travis/cli/branches.rb
travis-1.8.12 lib/travis/cli/branches.rb
travis-1.8.13.travis.1141.9 lib/travis/cli/branches.rb
travis-1.8.12.travis.1136.9 lib/travis/cli/branches.rb
travis-1.8.12.travis.1135.9 lib/travis/cli/branches.rb
travis-1.8.12.travis.1125.9 lib/travis/cli/branches.rb
travis-1.8.12.pre.rc1 lib/travis/cli/branches.rb
travis-1.8.12.travis.1116.9 lib/travis/cli/branches.rb
travis-1.8.12.travis.1111.9 lib/travis/cli/branches.rb