fastlane 2.129.0.beta.20190731200035 → 2.129.0.beta.20190802200057
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/spaceship/lib/spaceship/tunes/build_details.rb +160 -18
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eee3f2d07b805aa53dfb08347695d95339cf8a13
|
4
|
+
data.tar.gz: d014d30eae578eff0ce2d696c85e8084a71ee7b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 116d2ec62d0ed2c5165425859753f727549e8125b772f9e1e7cbfe63840c5e7fd758e380a8e253798ec9f18c92b55eb80ff34e1845e5755c157f2660c308ff34
|
7
|
+
data.tar.gz: 4b4bc0efcdcb55467bf776aadc4f0ab3d8a789f0c1624d5dfd2089a0391f343cfebd7db033764a66c821a3df3e0cd11ea4226971d137ddb4a6256cbcb4382f4b
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.129.0.beta.
|
2
|
+
VERSION = '2.129.0.beta.20190802200057'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -6,36 +6,178 @@ module Spaceship
|
|
6
6
|
class BuildDetails < TunesBase
|
7
7
|
# @return (String) The App identifier of this app, provided by App Store Connect
|
8
8
|
# @example
|
9
|
-
#
|
9
|
+
# '1013943394'
|
10
10
|
attr_accessor :apple_id
|
11
11
|
|
12
|
-
# @return (
|
13
|
-
#
|
14
|
-
attr_accessor :
|
12
|
+
# @return (Integer) Upload date of build as UNIX timestamp
|
13
|
+
# @example 1563813377000
|
14
|
+
attr_accessor :upload_date
|
15
15
|
|
16
|
-
# @return
|
17
|
-
|
16
|
+
# @return (String) State of the build/binary
|
17
|
+
# @example 'ITC.apps.preReleaseBuildStatus.Validated'
|
18
|
+
attr_accessor :binary_state
|
18
19
|
|
19
|
-
# @return
|
20
|
-
|
20
|
+
# @return (String) Name of uploaded file
|
21
|
+
# @example 'MyApp.ipa'
|
22
|
+
attr_accessor :file_name
|
23
|
+
|
24
|
+
# @return (String) SDK used to build app
|
25
|
+
# @example '13A340'
|
26
|
+
attr_accessor :build_sdk
|
27
|
+
|
28
|
+
# @return (String) Platform
|
29
|
+
# @example '13A340'
|
30
|
+
attr_accessor :build_platform
|
31
|
+
|
32
|
+
# @return (String) Bundle ID of build
|
33
|
+
# @example 'com.sample.app'
|
34
|
+
attr_accessor :bundle_id
|
35
|
+
|
36
|
+
# @return (String) Name of app
|
37
|
+
# @example 'Test App'
|
38
|
+
attr_accessor :app_name
|
39
|
+
|
40
|
+
# @return (String) Supported architectures of the build
|
41
|
+
# @example 'armv7, arm64'
|
42
|
+
attr_accessor :supported_architectures
|
43
|
+
|
44
|
+
# @return (String) Localizations of the build
|
45
|
+
# @example 'English'
|
46
|
+
attr_accessor :localizations
|
47
|
+
|
48
|
+
# @return (Boolean) Is this a Newsstand app?
|
49
|
+
# @example false
|
50
|
+
attr_accessor :newsstand_app
|
51
|
+
|
52
|
+
# @return (Boolean) Does the build contain an app icon?
|
53
|
+
# @example true
|
54
|
+
attr_accessor :prerendered_icon_flag
|
55
|
+
|
56
|
+
# @return [Hash] containing all entitlements for all targets
|
57
|
+
# @example 'Sample.app/Sample: {'com.apple.developer.team-identifier': 'ABC123DEF456'}'
|
58
|
+
attr_accessor :entitlements
|
59
|
+
|
60
|
+
# @return (String) Platform of the app
|
61
|
+
# @example 'ios'
|
62
|
+
attr_accessor :app_plattform
|
63
|
+
|
64
|
+
# @return (String) Device Requirements / Device Protocols
|
65
|
+
attr_accessor :device_protocols
|
66
|
+
|
67
|
+
# @return (String) Version code of the build
|
68
|
+
# @example '4'
|
69
|
+
attr_accessor :cf_bundle_version
|
70
|
+
|
71
|
+
# @return (String) Version code of the build train
|
72
|
+
# @example '1.6'
|
73
|
+
attr_accessor :cf_bundle_short_version
|
74
|
+
|
75
|
+
# @return (String) Minimum iOS Version
|
76
|
+
# @example '9.3'
|
77
|
+
attr_accessor :min_os_version
|
78
|
+
|
79
|
+
# @return (String) Enabled Device Family
|
80
|
+
# @example 'iPhone / iPod touch, iPad''
|
81
|
+
attr_accessor :device_families
|
82
|
+
|
83
|
+
# @return (String) Required Capabilities
|
84
|
+
# @example 'armv7'
|
85
|
+
attr_accessor :capabilities
|
86
|
+
|
87
|
+
# @return (Int) Compressed File Size in bytes
|
88
|
+
# @example '9365224'
|
89
|
+
attr_accessor :size_in_bytes
|
90
|
+
|
91
|
+
# @return (Hash) Estimated App Store file sizes for all devices in bytes
|
92
|
+
attr_accessor :sizes_in_bytes
|
21
93
|
|
22
|
-
# @return
|
94
|
+
# @return (Hash) Estimated App Store file sizes for all devices in bytes
|
95
|
+
attr_accessor :sizes_in_bytes_with_device_loc
|
96
|
+
|
97
|
+
# @return (Boolean) Contains On Demand Resources
|
98
|
+
# @example false
|
23
99
|
attr_accessor :contains_odr
|
24
100
|
|
25
|
-
#
|
26
|
-
|
101
|
+
# @return (Integer) Number of Asset packs
|
102
|
+
# @example 0
|
103
|
+
attr_accessor :number_of_asset_packs
|
27
104
|
|
28
|
-
# @return
|
29
|
-
|
105
|
+
# @return (Boolean) Includes Symbols
|
106
|
+
# @example true
|
107
|
+
attr_accessor :include_symbols
|
108
|
+
|
109
|
+
# @return (Boolean) App Uses Non-Exempt Encryption (Optional)
|
110
|
+
# @example null
|
111
|
+
attr_accessor :use_encryption_in_plist
|
112
|
+
|
113
|
+
# @return (Boolean) App Encryption Export Compliance Code (Optional)
|
114
|
+
# @example null
|
115
|
+
attr_accessor :export_compliance_code_value_in_plist
|
116
|
+
|
117
|
+
# @return (Boolean) Includes Stickers
|
118
|
+
# @example false
|
119
|
+
attr_accessor :has_stickers
|
120
|
+
|
121
|
+
# @return (Boolean) Includes iMessage App
|
122
|
+
# @example false
|
123
|
+
attr_accessor :has_messages_extension
|
124
|
+
|
125
|
+
# @return (Boolean) // Not sure what this is for
|
126
|
+
# @example false
|
127
|
+
attr_accessor :launch_prohibited
|
128
|
+
|
129
|
+
# @return (Boolean) Uses SiriKit
|
130
|
+
# @example false
|
131
|
+
attr_accessor :uses_synapse
|
132
|
+
|
133
|
+
# @return (Boolean) App uses Location Services
|
134
|
+
# @example false
|
135
|
+
attr_accessor :uses_location_background_mode
|
136
|
+
|
137
|
+
# @return (String) Link to the dSYM file (not always available)
|
138
|
+
# @example build/***.****.*****.*****-1.0.0-2647.dSYM.zip
|
139
|
+
attr_accessor :dsym_url
|
140
|
+
|
141
|
+
# @return (Boolean) Watch-Only App
|
142
|
+
# @example false
|
143
|
+
attr_accessor :watch_only
|
30
144
|
|
31
145
|
attr_mapping(
|
32
146
|
'apple_id' => :apple_id,
|
33
|
-
'
|
34
|
-
'
|
35
|
-
'
|
36
|
-
'containsODR' => :contains_odr,
|
147
|
+
'uploadDate' => :upload_date,
|
148
|
+
'binaryState' => :binary_state,
|
149
|
+
'fileName' => :file_name,
|
37
150
|
'buildSdk' => :build_sdk,
|
38
|
-
'
|
151
|
+
'buildPlatform' => :build_platform,
|
152
|
+
'bundleId' => :bundle_id,
|
153
|
+
'appName' => :app_name,
|
154
|
+
'supportedArchitectures' => :supported_architectures,
|
155
|
+
'localizations' => :localizations,
|
156
|
+
'newsstandApp' => :newsstand_app,
|
157
|
+
'prerenderedIconFlag' => :prerendered_icon_flag,
|
158
|
+
'entitlements' => :entitlements,
|
159
|
+
'appPlatform' => :app_platform,
|
160
|
+
'deviceProtocols' => :device_protocols,
|
161
|
+
'cfBundleVersion' => :cf_bundle_version,
|
162
|
+
'cfBundleShortVersion' => :cf_bundle_short_version,
|
163
|
+
'minOsVersion' => :min_os_version,
|
164
|
+
'deviceFamilies' => :device_families,
|
165
|
+
'capabilities' => :capabilities,
|
166
|
+
'sizeInBytes' => :size_in_bytes,
|
167
|
+
'sizesInBytes' => :sizes_in_bytes,
|
168
|
+
'sizesInBytesWithDeviceLoc' => :sizes_in_bytes_with_device_loc,
|
169
|
+
'containsODR' => :contains_odr,
|
170
|
+
'numberOfAssetPacks' => :number_of_asset_packs,
|
171
|
+
'includesSymbols' => :include_symbols,
|
172
|
+
'useEncryptionInPlist' => :use_encryption_in_plist,
|
173
|
+
'exportComplianceCodeValueInPlist' => :export_compliance_code_value_in_plist,
|
174
|
+
'hasStickers' => :has_stickers,
|
175
|
+
'hasMessagesExtension' => :has_messages_extension,
|
176
|
+
'launchProhibited' => :launch_prohibited,
|
177
|
+
'usesSynapse' => :uses_synapse,
|
178
|
+
'usesLocationBackgroundMode' => :uses_location_background_mode,
|
179
|
+
'dsymurl' => :dsym_url,
|
180
|
+
'watchOnly' => :watch_only
|
39
181
|
)
|
40
182
|
end
|
41
183
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.129.0.beta.
|
4
|
+
version: 2.129.0.beta.20190802200057
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luka Mirosevic
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-
|
30
|
+
date: 2019-08-02 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1742,24 +1742,24 @@ metadata:
|
|
1742
1742
|
post_install_message:
|
1743
1743
|
rdoc_options: []
|
1744
1744
|
require_paths:
|
1745
|
-
-
|
1745
|
+
- precheck/lib
|
1746
1746
|
- pilot/lib
|
1747
|
-
- cert/lib
|
1748
|
-
- screengrab/lib
|
1749
|
-
- snapshot/lib
|
1750
|
-
- credentials_manager/lib
|
1751
1747
|
- deliver/lib
|
1752
|
-
-
|
1748
|
+
- sigh/lib
|
1753
1749
|
- gym/lib
|
1754
|
-
- fastlane/lib
|
1755
|
-
- fastlane_core/lib
|
1756
1750
|
- scan/lib
|
1757
|
-
-
|
1758
|
-
-
|
1751
|
+
- cert/lib
|
1752
|
+
- supply/lib
|
1753
|
+
- pem/lib
|
1754
|
+
- snapshot/lib
|
1759
1755
|
- produce/lib
|
1760
|
-
-
|
1756
|
+
- match/lib
|
1761
1757
|
- frameit/lib
|
1762
|
-
-
|
1758
|
+
- fastlane/lib
|
1759
|
+
- fastlane_core/lib
|
1760
|
+
- spaceship/lib
|
1761
|
+
- screengrab/lib
|
1762
|
+
- credentials_manager/lib
|
1763
1763
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1764
1764
|
requirements:
|
1765
1765
|
- - ">="
|