fastlane 2.150.0.rc2 → 2.150.0.rc3
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d404f18ab2b675e5d8d87a50231b245945e7190325f1b73baf33b940364fb5e
|
|
4
|
+
data.tar.gz: 268835faf3d58aa4d0707b31ae7606bd1b986ded00b2b22f51bfbb538fa334df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 803a021579a5478e8a136b72d3ea7623df1fc29b838c5f4a50be7a86dbf790bfc462f2724258fd96939ac9235a3a3ec8f30636ed04b4b42eec9f34395992cc97
|
|
7
|
+
data.tar.gz: 377de10f8a84594b91a35c1e1749235aa7d61cd159d197a95955d9b297f687d28164ec26536824ff9aaef44d2c4d0436674262a008bf44e9af917e04e08c5ccd
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module Fastlane
|
|
2
|
-
VERSION = '2.150.0.
|
|
2
|
+
VERSION = '2.150.0.rc3'.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
|
|
@@ -58,12 +58,10 @@ module Spaceship
|
|
|
58
58
|
Spaceship::ConnectAPI.post_app(
|
|
59
59
|
name: name,
|
|
60
60
|
version_string: version_string,
|
|
61
|
-
sku: sku,
|
|
62
|
-
primary_locale,
|
|
61
|
+
sku: sku,
|
|
62
|
+
primary_locale: primary_locale,
|
|
63
63
|
bundle_id: bundle_id,
|
|
64
|
-
platforms: platforms
|
|
65
|
-
territory_ids: territory_ids,
|
|
66
|
-
available_in_new_territories: available_in_new_territories
|
|
64
|
+
platforms: platforms
|
|
67
65
|
)
|
|
68
66
|
end
|
|
69
67
|
|
|
@@ -28,7 +28,7 @@ module Spaceship
|
|
|
28
28
|
# app
|
|
29
29
|
#
|
|
30
30
|
|
|
31
|
-
def post_app(name: nil, version_string: nil, sku: nil, primary_locale: nil, bundle_id: nil, platforms: nil
|
|
31
|
+
def post_app(name: nil, version_string: nil, sku: nil, primary_locale: nil, bundle_id: nil, platforms: nil)
|
|
32
32
|
included = []
|
|
33
33
|
included << {
|
|
34
34
|
type: "appInfos",
|
|
@@ -109,8 +109,7 @@ module Spaceship
|
|
|
109
109
|
attributes: {
|
|
110
110
|
sku: sku,
|
|
111
111
|
primaryLocale: primary_locale,
|
|
112
|
-
bundleId: bundle_id
|
|
113
|
-
availableInNewTerritories: !!available_in_new_territories
|
|
112
|
+
bundleId: bundle_id
|
|
114
113
|
},
|
|
115
114
|
relationships: relationships
|
|
116
115
|
},
|