Class: Borg::Server::Base

Inherits:
Capistrano::ServerDefinition
  • Object
show all
Defined in:
lib/borg/server/base.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.create(opts) ⇒ Object



5
6
7
# File 'lib/borg/server/base.rb', line 5

def self.create opts
  unimplemented "Use a subclass of Borg::Server::Base that implements the create functionality."
end

Instance Method Details

#destroyObject



17
18
19
# File 'lib/borg/server/base.rb', line 17

def destroy
  unimplemented "Use a subclass of Borg::Server::Base that implements the destroy functionality."
end

#startObject



9
10
11
# File 'lib/borg/server/base.rb', line 9

def start
  unimplemented "Use a subclass of Borg::Server::Base that implements the start functionality."
end

#stopObject



13
14
15
# File 'lib/borg/server/base.rb', line 13

def stop
  unimplemented "Use a subclass of Borg::Server::Base that implements the stop functionality."
end