Class: Spaceship::Tunes::BuildDetails
- Defined in:
- spaceship/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 App Store 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
Method Summary
Methods inherited from TunesBase
Methods inherited from Base
attr_accessor, attr_mapping, attributes, #attributes, factory, #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 App Store Connect.
10 11 12 |
# File 'spaceship/lib/spaceship/tunes/build_details.rb', line 10 def apple_id @apple_id end |
#build_sdk ⇒ Object
e.g. “13A340”
26 27 28 |
# File 'spaceship/lib/spaceship/tunes/build_details.rb', line 26 def build_sdk @build_sdk end |
#contains_odr ⇒ Bool
23 24 25 |
# File 'spaceship/lib/spaceship/tunes/build_details.rb', line 23 def contains_odr @contains_odr end |
#dsym_url ⇒ String
Returns Link to the dSYM file (not always available) lol, it’s unencrypted http.
14 15 16 |
# File 'spaceship/lib/spaceship/tunes/build_details.rb', line 14 def dsym_url @dsym_url end |
#file_name ⇒ String
Returns e.g. “MyApp.ipa”.
29 30 31 |
# File 'spaceship/lib/spaceship/tunes/build_details.rb', line 29 def file_name @file_name end |
#include_symbols ⇒ Bool
17 18 19 |
# File 'spaceship/lib/spaceship/tunes/build_details.rb', line 17 def include_symbols @include_symbols end |
#number_of_asset_packs ⇒ Integer
20 21 22 |
# File 'spaceship/lib/spaceship/tunes/build_details.rb', line 20 def number_of_asset_packs @number_of_asset_packs end |