Method: Hyperkit::Client::Containers#containers
- Defined in:
- lib/hyperkit/client/containers.rb
#containers ⇒ Array<String>
List of containers on the server (public or private)
22 23 24 25 |
# File 'lib/hyperkit/client/containers.rb', line 22 def containers response = get(containers_path) response..map { |path| path.split('/').last } end |