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.14.travis.1163.9 lib/travis/cli/history.rb
travis-1.8.14.travis.1162.9 lib/travis/cli/history.rb
travis-1.8.14.travis.1160.9 lib/travis/cli/history.rb
travis-1.8.13 lib/travis/cli/history.rb
travis-1.8.14.travis.1156.9 lib/travis/cli/history.rb
travis-1.8.14.travis.1155.9 lib/travis/cli/history.rb
travis-1.8.13.travis.1152.9 lib/travis/cli/history.rb
travis-1.8.13.travis.1148.9 lib/travis/cli/history.rb
travis-1.8.12 lib/travis/cli/history.rb
travis-1.8.13.travis.1141.9 lib/travis/cli/history.rb
travis-1.8.12.travis.1136.9 lib/travis/cli/history.rb
travis-1.8.12.travis.1135.9 lib/travis/cli/history.rb
travis-1.8.12.travis.1125.9 lib/travis/cli/history.rb
travis-1.8.12.pre.rc1 lib/travis/cli/history.rb
travis-1.8.12.travis.1116.9 lib/travis/cli/history.rb
travis-1.8.12.travis.1111.9 lib/travis/cli/history.rb
travis-1.8.12.travis.1101.9 lib/travis/cli/history.rb
travis-1.8.11 lib/travis/cli/history.rb
travis-1.8.11.travis.1098.9 lib/travis/cli/history.rb
travis-1.8.11.travis.1081.9 lib/travis/cli/history.rb