Class: Spaceship::Tunes::BuildDetails
- Defined in:
- lib/spaceship/tunes/build_details.rb
Overview
Represents the details of a build
Instance Attribute Summary collapse
-
#apple_id ⇒ String
The App identifier of this app, provided by iTunes Connect.
-
#build_sdk ⇒ Object
e.g.
- #contains_odr ⇒ Bool
-
#dsym_url ⇒ String
Link to the dSYM file (not always available) lol, it’s unencrypted http.
-
#file_name ⇒ String
E.g.
- #include_symbols ⇒ Bool
- #number_of_asset_packs ⇒ Integer
Attributes inherited from Base
Class Method Summary collapse
-
.factory(attrs) ⇒ Object
Create a new object based on a hash.
Methods inherited from TunesBase
Methods inherited from Base
attr_accessor, attr_mapping, #attributes, attributes, #initialize, #inspect, mapping_module, method_missing, set_client, #setup, #to_s
Constructor Details
This class inherits a constructor from Spaceship::Base
Instance Attribute Details
#apple_id ⇒ String
Returns The App identifier of this app, provided by iTunes Connect.
8 9 10 |
# File 'lib/spaceship/tunes/build_details.rb', line 8 def apple_id @apple_id end |
#build_sdk ⇒ Object
e.g. “13A340”
24 25 26 |
# File 'lib/spaceship/tunes/build_details.rb', line 24 def build_sdk @build_sdk end |
#contains_odr ⇒ Bool
21 22 23 |
# File 'lib/spaceship/tunes/build_details.rb', line 21 def contains_odr @contains_odr end |
#dsym_url ⇒ String
Returns Link to the dSYM file (not always available) lol, it’s unencrypted http.
12 13 14 |
# File 'lib/spaceship/tunes/build_details.rb', line 12 def dsym_url @dsym_url end |
#file_name ⇒ String
Returns e.g. “MyApp.ipa”.
27 28 29 |
# File 'lib/spaceship/tunes/build_details.rb', line 27 def file_name @file_name end |
#include_symbols ⇒ Bool
15 16 17 |
# File 'lib/spaceship/tunes/build_details.rb', line 15 def include_symbols @include_symbols end |
#number_of_asset_packs ⇒ Integer
18 19 20 |
# File 'lib/spaceship/tunes/build_details.rb', line 18 def number_of_asset_packs @number_of_asset_packs end |
Class Method Details
.factory(attrs) ⇒ Object
Create a new object based on a hash. This is used to create a new object based on the server response.
42 43 44 |
# File 'lib/spaceship/tunes/build_details.rb', line 42 def factory(attrs) self.new(attrs) end |