Sha256: a2841c5888169f18760cb730ef98f8fe139f929ed0336b85cfd37c24b60f9c77

Contents?: true

Size: 1.3 KB

Versions: 55

Compression:

Stored size: 1.3 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('--[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 [
            color("##{build.number} #{build.state}:".ljust(16), [build.color, :bold]),
            color("#{build.branch_info} ", :info),
            build.commit.subject
          ].join.strip + "\n"
        end
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
travis-1.6.3.travis.381.4 lib/travis/cli/history.rb
travis-1.6.3.travis.379.4 lib/travis/cli/history.rb
travis-1.6.3.travis.377.4 lib/travis/cli/history.rb
travis-1.6.3.travis.376.4 lib/travis/cli/history.rb
travis-1.6.3.travis.374.4 lib/travis/cli/history.rb
travis-1.6.3.travis.373.4 lib/travis/cli/history.rb
travis-1.6.2.travis.371.4 lib/travis/cli/history.rb
travis-1.6.2 lib/travis/cli/history.rb
travis-1.6.2.travis.370.4 lib/travis/cli/history.rb
travis-1.6.2.travis.369.4 lib/travis/cli/history.rb
travis-1.6.2.travis.368.4 lib/travis/cli/history.rb
travis-1.6.2.travis.367.4 lib/travis/cli/history.rb
travis-1.6.2.travis.366.4 lib/travis/cli/history.rb
travis-1.6.2.travis.365.4 lib/travis/cli/history.rb
travis-1.6.2.travis.364.4 lib/travis/cli/history.rb
travis-1.6.1 lib/travis/cli/history.rb
travis-1.6.1.travis.363.4 lib/travis/cli/history.rb
travis-1.6.0 lib/travis/cli/history.rb
travis-1.5.9.travis.362.4 lib/travis/cli/history.rb
travis-1.5.9.travis.361.4 lib/travis/cli/history.rb