Sha256: 73b7ef4f7db628fcbabad79b3ac512e0790bd2e24c5a6182dbb625c30d770226

Contents?: true

Size: 575 Bytes

Versions: 215

Compression:

Stored size: 575 Bytes

Contents

require 'travis/cli'

module Travis
  module CLI
    class Whatsup < ApiCommand
      description "lists most recent builds"
      on('-m', '--my-repos', 'Only display my own repositories')

      def run
        recent.each do |repo|
          say [
            color(repo.slug, [:bold, repo.color]),
            color("#{repo.last_build.state}: ##{repo.last_build.number}", repo.color)
          ].join(" ")
        end
      end

      private

        def recent
          return repos unless my_repos
          repos(:member => user.login)
        end
    end
  end
end

Version data entries

215 entries across 215 versions & 1 rubygems

Version Path
travis-1.5.6.travis.317.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.315.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.314.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.312.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.307.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.306.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.304.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.303.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.301.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.299.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.297.4 lib/travis/cli/whatsup.rb
travis-1.5.6.travis.296.4 lib/travis/cli/whatsup.rb
travis-1.5.5 lib/travis/cli/whatsup.rb
travis-1.5.4 lib/travis/cli/whatsup.rb
travis-1.5.3 lib/travis/cli/whatsup.rb