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.11.travis.1004.9 lib/travis/cli/history.rb
travis-1.8.11.travis.1003.9 lib/travis/cli/history.rb
travis-1.8.11.travis.1002.9 lib/travis/cli/history.rb
travis-1.8.11.travis.1001.9 lib/travis/cli/history.rb
travis-1.8.11.travis.1000.9 lib/travis/cli/history.rb
travis-1.8.11.travis.998.9 lib/travis/cli/history.rb
travis-1.8.10.travis.997.9 lib/travis/cli/history.rb
travis-1.8.10 lib/travis/cli/history.rb
travis-1.8.10.travis.994.9 lib/travis/cli/history.rb
travis-1.8.10.travis.953.11 lib/travis/cli/history.rb
travis-akerl-1.8.9.1 lib/travis/cli/history.rb
travis-akerl-1.8.9 lib/travis/cli/history.rb
travis-1.8.10.travis.950.11 lib/travis/cli/history.rb
travis-1.8.10.travis.948.11 lib/travis/cli/history.rb
travis-1.8.10.travis.946.11 lib/travis/cli/history.rb
travis-1.8.10.travis.944.11 lib/travis/cli/history.rb
travis-1.8.10.travis.943.11 lib/travis/cli/history.rb
travis-1.8.10.travis.942.11 lib/travis/cli/history.rb
travis-1.8.10.travis.941.11 lib/travis/cli/history.rb
travis-1.8.10.travis.940.11 lib/travis/cli/history.rb