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.
-
#delete_cache(app_id_or_app_name) ⇒ Object
Destroy a build cache.
-
#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.
1513 1514 1515 |
# File 'lib/platform-api/client.rb', line 1513 def initialize(client) @client = client end |
Instance Method Details
#create(app_id_or_app_name, body = {}) ⇒ Object
Create a new build.
1521 1522 1523 |
# File 'lib/platform-api/client.rb', line 1521 def create(app_id_or_app_name, body = {}) @client.build.create(app_id_or_app_name, body) end |
#delete_cache(app_id_or_app_name) ⇒ Object
Destroy a build cache.
1543 1544 1545 |
# File 'lib/platform-api/client.rb', line 1543 def delete_cache(app_id_or_app_name) @client.build.delete_cache(app_id_or_app_name) end |
#info(app_id_or_app_name, build_id) ⇒ Object
Info for existing build.
1529 1530 1531 |
# File 'lib/platform-api/client.rb', line 1529 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.
1536 1537 1538 |
# File 'lib/platform-api/client.rb', line 1536 def list(app_id_or_app_name) @client.build.list(app_id_or_app_name) end |