Sha256: e1eefb86928405a245153ee7639e4b973d0af3cafce136a72c6bd955b4d88187

Contents?: true

Size: 1.57 KB

Versions: 236

Compression:

Stored size: 1.57 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('-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 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

236 entries across 236 versions & 3 rubygems

Version Path
travis-1.8.1.travis.689.5 lib/travis/cli/history.rb
travis-1.8.0 lib/travis/cli/history.rb
travis-1.7.8.travis.688.5 lib/travis/cli/history.rb
travis-1.7.8.travis.687.5 lib/travis/cli/history.rb
travis-1.7.8.travis.684.5 lib/travis/cli/history.rb
travis-1.7.7 lib/travis/cli/history.rb
travis-1.7.7.travis.683.5 lib/travis/cli/history.rb
travis-1.7.7.travis.681.5 lib/travis/cli/history.rb
travis-1.7.7.travis.678.5 lib/travis/cli/history.rb
travis-1.7.6.travis.677.5 lib/travis/cli/history.rb
travis-1.7.6 lib/travis/cli/history.rb
travis-1.7.6.travis.676.5 lib/travis/cli/history.rb
travis-1.7.6.travis.675.5 lib/travis/cli/history.rb
travis-1.7.6.travis.673.5 lib/travis/cli/history.rb
travis-1.7.6.travis.673.6 lib/travis/cli/history.rb
travis-1.7.6.travis.672.5 lib/travis/cli/history.rb
travis-1.7.6.travis.671.5 lib/travis/cli/history.rb
travis-1.7.5 lib/travis/cli/history.rb
travis-1.7.5.travis.658.5 lib/travis/cli/history.rb
travis-1.7.5.travis.656.5 lib/travis/cli/history.rb