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.10.travis.943.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.942.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.941.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.940.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.935.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.933.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.931.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.930.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.929.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.927.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.925.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.924.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.923.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.922.11 lib/travis/cli/branches.rb
travis-1.8.10.travis.921.11 lib/travis/cli/branches.rb
travis-1.8.9 lib/travis/cli/branches.rb
travis-1.8.9.travis.919.11 lib/travis/cli/branches.rb
travis-1.8.9.travis.918.11 lib/travis/cli/branches.rb
travis-1.8.9.travis.916.11 lib/travis/cli/branches.rb
travis-1.8.9.travis.875.3 lib/travis/cli/branches.rb