Class: PlatformAPI::Build
- Inherits:
-
Object
- Object
- PlatformAPI::Build
- Defined in:
- lib/platform-api/client.rb
Overview
A build represents the process of transforming a code tarball into a slug
Instance Method Summary collapse
-
#create(app_id_or_app_name, body) ⇒ Object
Create a new build.
-
#info(app_id_or_app_name, build_id) ⇒ Object
Info for existing build.
-
#initialize(client) ⇒ Build
constructor
A new instance of Build.
-
#list(app_id_or_app_name) ⇒ Object
List existing build.
Constructor Details
#initialize(client) ⇒ Build
Returns a new instance of Build.
884 885 886 |
# File 'lib/platform-api/client.rb', line 884 def initialize(client) @client = client end |
Instance Method Details
#create(app_id_or_app_name, body) ⇒ Object
Create a new build.
892 893 894 |
# File 'lib/platform-api/client.rb', line 892 def create(app_id_or_app_name, body) @client.build.create(app_id_or_app_name, body) end |
#info(app_id_or_app_name, build_id) ⇒ Object
Info for existing build.
900 901 902 |
# File 'lib/platform-api/client.rb', line 900 def info(app_id_or_app_name, build_id) @client.build.info(app_id_or_app_name, build_id) end |
#list(app_id_or_app_name) ⇒ Object
List existing build.
907 908 909 |
# File 'lib/platform-api/client.rb', line 907 def list(app_id_or_app_name) @client.build.list(app_id_or_app_name) end |