Sha256: 53cb8099c823cd741d27e3aad6e9fd95849f6460ca9749f57fa6b72a00efc777

Contents?: true

Size: 709 Bytes

Versions: 171

Compression:

Stored size: 709 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
        say "nothing to show" if recent.empty?

        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
          @recent ||= begin
            recent = my_repos ? repos : repos(:member => user.login)
            recent.select { |repo| repo.last_build }
          end
        end
    end
  end
end

Version data entries

171 entries across 171 versions & 3 rubygems

Version Path
travis-1.8.1.travis.697.5 lib/travis/cli/whatsup.rb
travis-1.8.1.travis.696.5 lib/travis/cli/whatsup.rb
travis-1.8.1.travis.693.5 lib/travis/cli/whatsup.rb
travis-1.8.1.travis.692.5 lib/travis/cli/whatsup.rb
travis-1.8.1.travis.689.5 lib/travis/cli/whatsup.rb
travis-1.8.0 lib/travis/cli/whatsup.rb
travis-1.7.8.travis.688.5 lib/travis/cli/whatsup.rb
travis-1.7.8.travis.687.5 lib/travis/cli/whatsup.rb
travis-1.7.8.travis.684.5 lib/travis/cli/whatsup.rb
travis-1.7.7 lib/travis/cli/whatsup.rb
travis-1.7.7.travis.683.5 lib/travis/cli/whatsup.rb