Sha256: 7e8d55eadb45180a89b2f3a298205e786f95032427950e0bdc2918102a457e23

Contents?: true

Size: 1.45 KB

Versions: 51

Compression:

Stored size: 1.45 KB

Contents

require 'travis/cli'

module Travis
  module CLI
    class History < RepoCommand
      description "displays a projects 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('--[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 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),
            build.commit.subject
          ].compact.join(" ").strip + "\n"
        end
    end
  end
end

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
travis-1.6.9.travis.479.6 lib/travis/cli/history.rb
travis-1.6.9.travis.463.6 lib/travis/cli/history.rb
travis-1.6.9.travis.462.6 lib/travis/cli/history.rb
travis-1.6.9.travis.461.6 lib/travis/cli/history.rb
travis-1.6.9.travis.458.6 lib/travis/cli/history.rb
travis-1.6.8 lib/travis/cli/history.rb
travis-1.6.8.travis.457.6 lib/travis/cli/history.rb
travis-1.6.8.travis.456.6 lib/travis/cli/history.rb
travis-1.6.8.travis.455.6 lib/travis/cli/history.rb
travis-1.6.8.travis.454.6 lib/travis/cli/history.rb
travis-1.6.8.travis.453.6 lib/travis/cli/history.rb
travis-1.6.8.travis.452.6 lib/travis/cli/history.rb
travis-1.6.8.travis.451.6 lib/travis/cli/history.rb
travis-1.6.8.travis.450.6 lib/travis/cli/history.rb
travis-1.6.8.travis.449.6 lib/travis/cli/history.rb
travis-1.6.8.travis.447.6 lib/travis/cli/history.rb
travis-1.6.7.travis.446.6 lib/travis/cli/history.rb
travis-1.6.7 lib/travis/cli/history.rb
travis-1.6.7.travis.445.6 lib/travis/cli/history.rb
travis-1.6.7.travis.443.6 lib/travis/cli/history.rb