module Travis::Client::Restartable

Public Instance Methods

cancel() click to toggle source
# File lib/travis/client/restartable.rb, line 18
def cancel
  session.cancel(self)
end
cancelable?() click to toggle source
# File lib/travis/client/restartable.rb, line 14
def cancelable?
  true
end
restart() click to toggle source
# File lib/travis/client/restartable.rb, line 10
def restart
  session.restart(self)
end
restartable?() click to toggle source
# File lib/travis/client/restartable.rb, line 6
def restartable?
  true
end