Class: PlatformAPI::Stack
- Inherits:
-
Object
- Object
- PlatformAPI::Stack
- Defined in:
- lib/platform-api/client.rb
Overview
Stacks are the different application execution environments available in the Heroku platform.
Instance Method Summary collapse
-
#info(stack_name_or_stack_id) ⇒ Object
Stack info.
-
#initialize(client) ⇒ Stack
constructor
A new instance of Stack.
-
#list ⇒ Object
List available stacks.
Constructor Details
#initialize(client) ⇒ Stack
Returns a new instance of Stack.
2245 2246 2247 |
# File 'lib/platform-api/client.rb', line 2245 def initialize(client) @client = client end |
Instance Method Details
#info(stack_name_or_stack_id) ⇒ Object
Stack info.
2252 2253 2254 |
# File 'lib/platform-api/client.rb', line 2252 def info(stack_name_or_stack_id) @client.stack.info(stack_name_or_stack_id) end |
#list ⇒ Object
List available stacks.
2257 2258 2259 |
# File 'lib/platform-api/client.rb', line 2257 def list() @client.stack.list() end |