Class: Superhosting::Controller::Admin::Container
- Inherits:
-
Base
- Object
- Base
- Superhosting::Controller::Admin::Container
show all
- Defined in:
- lib/superhosting/controller/admin/container.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) ⇒ Container
Returns a new instance of Container.
5
6
7
8
|
# File 'lib/superhosting/controller/admin/container.rb', line 5
def initialize(name:, **kvargs)
@admin_name = name
super(kvargs)
end
|
Instance Method Details
#add(name:) ⇒ Object
14
15
16
|
# File 'lib/superhosting/controller/admin/container.rb', line 14
def add(name:)
end
|
#delete(name:) ⇒ Object
18
19
20
|
# File 'lib/superhosting/controller/admin/container.rb', line 18
def delete(name:)
end
|
#list ⇒ Object
10
11
12
|
# File 'lib/superhosting/controller/admin/container.rb', line 10
def list
end
|