Sha256: 81b208424a7e3db07380c1e0172e53f18c66a9a0ebed9e7da412c8be99859448

Contents?: true

Size: 1.58 KB

Versions: 24

Compression:

Stored size: 1.58 KB

Contents

require 'travis/cli'

module Travis
  module CLI
    class History < RepoCommand
      description "displays a project's build history"

      on('-a', '--after BUILD', 'Only show history after a given build number')
      on('-p', '--pull-request NUMBER', 'Only show history for the given Pull Request')
      on('-b', '--branch BRANCH', 'Only show history for the given branch')
      on('-l', '--limit LIMIT', 'Maximum number of history items')
      on('-d', '--date', 'Include date in output')
      on('-c', '--committer', 'Include committer in output')
      on('--[no-]all', 'Display all history items')

      def run
        countdown = Integer(limit || 10) unless all?
        params    = { :after_number => after } if after
        repository.each_build(params) do |build|
          next unless display? build
          display(build)

          if countdown
            countdown -= 1
            break if countdown < 1
          end
        end
      end

      private

        def display?(build)
          return build.pr_number   == pull_request.to_i if pull_request
          return build.branch_info == branch            if branch
          true
        end

        def display(build)
          say [
            date? && color(formatter.time(build.finished_at || build.started_at), build.color),
            color("##{build.number} #{build.state}:".ljust(16), [build.color, :bold]),
            color("#{build.branch_info}", :info),
            committer? && build.commit.author_name.ljust(25),
            build.commit.subject
          ].compact.join(" ").strip + "\n"
        end
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
travis-1.11.1 lib/travis/cli/history.rb
travis-1.11.0 lib/travis/cli/history.rb
travis-1.10.1.travis.1341.9 lib/travis/cli/history.rb
travis-1.10.1.travis.1321.9 lib/travis/cli/history.rb
travis-1.10.1.travis.1312.9 lib/travis/cli/history.rb
travis-1.10.1.travis.1311.9 lib/travis/cli/history.rb
travis-1.10.1.travis.1305.9 lib/travis/cli/history.rb
travis-1.10.0 lib/travis/cli/history.rb
travis-1.9.2.travis.1304.9 lib/travis/cli/history.rb
travis-1.9.2.travis.1303.9 lib/travis/cli/history.rb
travis-1.10.0.pre.rc4 lib/travis/cli/history.rb
travis-1.10.0.pre.rc3 lib/travis/cli/history.rb
travis-1.10.0.pre.rc2 lib/travis/cli/history.rb
travis-1.9.2.travis.1288.9 lib/travis/cli/history.rb
travis-1.9.2.travis.1285.9 lib/travis/cli/history.rb
travis-1.9.2.travis.1279.9 lib/travis/cli/history.rb
travis-1.10.0.pre.rc1 lib/travis/cli/history.rb
travis-1.9.2.travis.1254.9 lib/travis/cli/history.rb
travis-1.9.2.travis.1236.9 lib/travis/cli/history.rb
travis-1.9.2.travis.1224.9 lib/travis/cli/history.rb