Class: Superhosting::Controller::Container::Admin
- Inherits:
-
Base
- Object
- Base
- Superhosting::Controller::Container::Admin
show all
- Defined in:
- lib/superhosting/controller/container/admin.rb
Instance Method Summary
collapse
Methods inherited from Base
#command, #command!, #debug
Methods included from Helpers
#create_conf, #erb, #instance_variables_to_hash, #remove_line_from_file, #write_if_not_exist
Constructor Details
#initialize(name:, **kvargs) ⇒ Admin
Returns a new instance of Admin.
5
6
7
8
|
# File 'lib/superhosting/controller/container/admin.rb', line 5
def initialize(name:, **kvargs)
@container_name = name
super(kvargs)
end
|
Instance Method Details
#add(name:) ⇒ Object
14
15
16
|
# File 'lib/superhosting/controller/container/admin.rb', line 14
def add(name:)
end
|
#delete(name:) ⇒ Object
18
19
20
|
# File 'lib/superhosting/controller/container/admin.rb', line 18
def delete(name:)
end
|
#list ⇒ Object
10
11
12
|
# File 'lib/superhosting/controller/container/admin.rb', line 10
def list
end
|