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.6.2.travis.369.4 lib/travis/cli/branches.rb
travis-1.6.2.travis.368.4 lib/travis/cli/branches.rb
travis-1.6.2.travis.367.4 lib/travis/cli/branches.rb
travis-1.6.2.travis.366.4 lib/travis/cli/branches.rb
travis-1.6.2.travis.365.4 lib/travis/cli/branches.rb
travis-1.6.2.travis.364.4 lib/travis/cli/branches.rb
travis-1.6.1 lib/travis/cli/branches.rb
travis-1.6.1.travis.363.4 lib/travis/cli/branches.rb
travis-1.6.0 lib/travis/cli/branches.rb
travis-1.5.9.travis.362.4 lib/travis/cli/branches.rb
travis-1.5.9.travis.361.4 lib/travis/cli/branches.rb
travis-1.5.9.travis.360.4 lib/travis/cli/branches.rb
travis-1.5.9.travis.358.4 lib/travis/cli/branches.rb
travis-1.5.8 lib/travis/cli/branches.rb
travis-1.5.8.travis.356.4 lib/travis/cli/branches.rb
travis-1.5.7 lib/travis/cli/branches.rb
travis-1.5.7.travis.345.4 lib/travis/cli/branches.rb
travis-1.5.7.travis.341.4 lib/travis/cli/branches.rb
travis-1.5.7.travis.338.4 lib/travis/cli/branches.rb
travis-1.5.6 lib/travis/cli/branches.rb