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.11.1 lib/travis/cli/whatsup.rb
travis-1.11.0 lib/travis/cli/whatsup.rb
travis-1.10.1.travis.1341.9 lib/travis/cli/whatsup.rb
travis-1.10.1.travis.1321.9 lib/travis/cli/whatsup.rb
travis-1.10.1.travis.1312.9 lib/travis/cli/whatsup.rb
travis-1.10.1.travis.1311.9 lib/travis/cli/whatsup.rb
travis-1.10.1.travis.1305.9 lib/travis/cli/whatsup.rb
travis-1.10.0 lib/travis/cli/whatsup.rb
travis-1.9.2.travis.1304.9 lib/travis/cli/whatsup.rb
travis-1.9.2.travis.1303.9 lib/travis/cli/whatsup.rb
travis-1.10.0.pre.rc4 lib/travis/cli/whatsup.rb
travis-1.10.0.pre.rc3 lib/travis/cli/whatsup.rb
travis-1.10.0.pre.rc2 lib/travis/cli/whatsup.rb
travis-1.9.2.travis.1288.9 lib/travis/cli/whatsup.rb
travis-1.9.2.travis.1285.9 lib/travis/cli/whatsup.rb
travis-1.9.2.travis.1279.9 lib/travis/cli/whatsup.rb
travis-1.10.0.pre.rc1 lib/travis/cli/whatsup.rb
travis-1.9.2.travis.1254.9 lib/travis/cli/whatsup.rb
travis-1.9.2.travis.1236.9 lib/travis/cli/whatsup.rb
travis-1.9.2.travis.1224.9 lib/travis/cli/whatsup.rb