Sha256: 32ed11943cdcaafc0f285c3306101690ff2b0b46ea8f2189077f7e5378ef4271

Contents?: true

Size: 451 Bytes

Versions: 386

Compression:

Stored size: 451 Bytes

Contents

require 'travis/cli'

module Travis
  module CLI
    class Restart < RepoCommand
      description "restarts a build or job"

      def run(number = last_build.number)
        authenticate
        entity = job(number) || build(number)
        error "could not find job or build #{repository.slug}##{number}" unless entity
        entity.restart

        say "restarted", "#{entity.class.one} ##{entity.number} has been %s"
      end
    end
  end
end

Version data entries

386 entries across 386 versions & 3 rubygems

Version Path
travis-1.5.6.travis.299.4 lib/travis/cli/restart.rb
travis-1.5.6.travis.297.4 lib/travis/cli/restart.rb
travis-1.5.6.travis.296.4 lib/travis/cli/restart.rb
travis-1.5.5 lib/travis/cli/restart.rb
travis-1.5.4 lib/travis/cli/restart.rb
travis-1.5.3 lib/travis/cli/restart.rb