fastlane 2.138.0 → 2.143.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +75 -62
- data/cert/lib/cert/options.rb +12 -5
- data/cert/lib/cert/runner.rb +13 -0
- data/deliver/lib/deliver/options.rb +2 -2
- data/deliver/lib/deliver/runner.rb +13 -2
- data/deliver/lib/deliver/submit_for_review.rb +7 -1
- data/fastlane/lib/fastlane/action.rb +2 -2
- data/fastlane/lib/fastlane/actions/.hockey.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/.slack.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/README.md +2 -0
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +13 -5
- data/fastlane/lib/fastlane/actions/build_app.rb +157 -6
- data/fastlane/lib/fastlane/actions/build_ios_app.rb +28 -132
- data/fastlane/lib/fastlane/actions/build_mac_app.rb +46 -0
- data/fastlane/lib/fastlane/actions/cocoapods.rb +2 -2
- data/fastlane/lib/fastlane/actions/create_pull_request.rb +71 -2
- data/fastlane/lib/fastlane/actions/docs/{build_ios_app.md → build_app.md} +1 -1
- data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +22 -6
- data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +20 -4
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +10 -0
- data/fastlane/lib/fastlane/actions/ensure_git_branch.rb +1 -1
- data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +35 -7
- data/fastlane/lib/fastlane/actions/frame_screenshots.rb +2 -1
- data/fastlane/lib/fastlane/actions/get_github_release.rb +3 -0
- data/fastlane/lib/fastlane/actions/gradle.rb +43 -2
- data/fastlane/lib/fastlane/actions/gym.rb +3 -7
- data/fastlane/lib/fastlane/actions/import_from_git.rb +4 -0
- data/fastlane/lib/fastlane/actions/last_git_tag.rb +14 -5
- data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +9 -3
- data/fastlane/lib/fastlane/actions/notarize.rb +183 -0
- data/fastlane/lib/fastlane/actions/run_tests.rb +5 -22
- data/fastlane/lib/fastlane/actions/s3.rb +5 -291
- data/fastlane/lib/fastlane/actions/set_github_release.rb +1 -1
- data/fastlane/lib/fastlane/actions/setup_ci.rb +14 -8
- data/fastlane/lib/fastlane/actions/spm.rb +8 -0
- data/fastlane/lib/fastlane/actions/swiftlint.rb +17 -2
- data/fastlane/lib/fastlane/actions/update_plist.rb +37 -2
- data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +13 -3
- data/fastlane/lib/fastlane/actions/upload_to_app_store.rb +1 -0
- data/fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb +78 -0
- data/fastlane/lib/fastlane/fast_file.rb +13 -3
- data/fastlane/lib/fastlane/helper/adb_helper.rb +1 -1
- data/fastlane/lib/fastlane/helper/s3_client_helper.rb +56 -0
- data/fastlane/lib/fastlane/plugins/plugin_manager.rb +1 -1
- data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +2 -0
- data/fastlane/lib/fastlane/runner.rb +23 -18
- data/fastlane/lib/fastlane/server/socket_server_action_command_executor.rb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/DeliverfileProtocol.swift +3 -3
- data/fastlane/swift/Fastlane.swift +429 -50
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/GymfileProtocol.swift +17 -1
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/MatchfileProtocol.swift +23 -3
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/RubyCommand.swift +1 -1
- data/fastlane/swift/Scanfile.swift +1 -1
- data/fastlane/swift/ScanfileProtocol.swift +21 -1
- data/fastlane/swift/Screengrabfile.swift +1 -1
- data/fastlane/swift/Snapshotfile.swift +1 -1
- data/fastlane/swift/SnapshotfileProtocol.swift +9 -1
- data/fastlane_core/lib/fastlane_core/build_watcher.rb +6 -2
- data/fastlane_core/lib/fastlane_core/cert_checker.rb +28 -0
- data/fastlane_core/lib/fastlane_core/device_manager.rb +20 -0
- data/fastlane_core/lib/fastlane_core/helper.rb +7 -1
- data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +1 -0
- data/fastlane_core/lib/fastlane_core/keychain_importer.rb +2 -0
- data/fastlane_core/lib/fastlane_core/project.rb +27 -0
- data/frameit/lib/frameit/commands_generator.rb +25 -0
- data/frameit/lib/frameit/config_parser.rb +31 -9
- data/frameit/lib/frameit/device.rb +90 -0
- data/frameit/lib/frameit/device_types.rb +121 -5
- data/frameit/lib/frameit/editor.rb +31 -40
- data/frameit/lib/frameit/offsets.rb +8 -1
- data/frameit/lib/frameit/options.rb +81 -54
- data/frameit/lib/frameit/runner.rb +17 -7
- data/frameit/lib/frameit/screenshot.rb +35 -47
- data/frameit/lib/frameit/template_finder.rb +15 -12
- data/gym/lib/gym/code_signing_mapping.rb +32 -3
- data/gym/lib/gym/detect_values.rb +34 -2
- data/gym/lib/gym/generators/build_command_generator.rb +1 -0
- data/gym/lib/gym/generators/package_command_generator.rb +4 -0
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +47 -17
- data/gym/lib/gym/module.rb +8 -0
- data/gym/lib/gym/options.rb +25 -1
- data/gym/lib/gym/runner.rb +64 -24
- data/match/lib/match/change_password.rb +1 -1
- data/match/lib/match/encryption.rb +4 -0
- data/match/lib/match/encryption/openssl.rb +1 -1
- data/match/lib/match/generator.rb +17 -3
- data/match/lib/match/importer.rb +2 -2
- data/match/lib/match/module.rb +5 -2
- data/match/lib/match/nuke.rb +59 -17
- data/match/lib/match/options.rb +38 -15
- data/match/lib/match/runner.rb +24 -8
- data/match/lib/match/setup.rb +1 -1
- data/match/lib/match/spaceship_ensure.rb +19 -9
- data/match/lib/match/storage.rb +4 -0
- data/match/lib/match/storage/git_storage.rb +5 -2
- data/match/lib/match/storage/google_cloud_storage.rb +2 -2
- data/match/lib/match/storage/s3_storage.rb +162 -0
- data/pilot/lib/pilot/.manager.rb.swp +0 -0
- data/pilot/lib/pilot/build_manager.rb +55 -15
- data/pilot/lib/pilot/options.rb +3 -1
- data/scan/lib/scan/detect_values.rb +6 -1
- data/scan/lib/scan/manager.rb +18 -1
- data/scan/lib/scan/options.rb +28 -1
- data/scan/lib/scan/runner.rb +11 -3
- data/scan/lib/scan/slack_poster.rb +1 -1
- data/scan/lib/scan/test_command_generator.rb +9 -5
- data/screengrab/lib/screengrab/runner.rb +31 -18
- data/snapshot/lib/snapshot/fixes/simulator_shared_pasteboard.rb +16 -0
- data/snapshot/lib/snapshot/options.rb +12 -1
- data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +2 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +13 -0
- data/spaceship/lib/spaceship/connect_api/.DS_Store +0 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_feedback.rb +4 -0
- data/spaceship/lib/spaceship/connect_api/models/build.rb +4 -0
- data/spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb +5 -0
- data/spaceship/lib/spaceship/connect_api/models/certificate.rb +2 -0
- data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +6 -0
- data/spaceship/lib/spaceship/portal/.certificate.rb.swp +0 -0
- data/spaceship/lib/spaceship/portal/app.rb +11 -2
- data/spaceship/lib/spaceship/tunes/iap.rb +11 -11
- data/spaceship/lib/spaceship/tunes/iap_detail.rb +7 -3
- data/spaceship/lib/spaceship/tunes/iap_families.rb +12 -1
- data/spaceship/lib/spaceship/tunes/iap_family_details.rb +26 -17
- data/spaceship/lib/spaceship/tunes/iap_status.rb +5 -1
- data/spaceship/lib/spaceship/tunes/tunes_client.rb +2 -2
- data/supply/lib/supply/client.rb +26 -0
- data/supply/lib/supply/uploader.rb +28 -0
- metadata +64 -20
@@ -18,13 +18,34 @@ module Spaceship
|
|
18
18
|
# @return (Intger) amount of linked in-app purchases of this family (read-only)
|
19
19
|
attr_accessor :iap_count
|
20
20
|
|
21
|
+
# @return (Array) of all in-app purchase family details
|
22
|
+
attr_accessor :family_details
|
23
|
+
|
21
24
|
attr_mapping({
|
22
25
|
'id' => :family_id,
|
23
26
|
'name.value' => :name,
|
24
27
|
'activeAddOns' => :linked_iaps,
|
25
|
-
'totalActiveAddOns' => :iap_count
|
28
|
+
'totalActiveAddOns' => :iap_count,
|
29
|
+
'details.value' => :family_details
|
26
30
|
})
|
27
31
|
|
32
|
+
# @return (Hash) localized names
|
33
|
+
def versions
|
34
|
+
parsed_versions = {}
|
35
|
+
raw_versions = raw_data["details"]["value"]
|
36
|
+
raw_versions.each do |version|
|
37
|
+
language = version["value"]["localeCode"]["value"]
|
38
|
+
parsed_versions[language.to_sym] = {
|
39
|
+
subscription_name: version["value"]["subscriptionName"]["value"],
|
40
|
+
name: version["value"]["name"]["value"],
|
41
|
+
id: version["value"]["id"],
|
42
|
+
status: version["value"]["status"]
|
43
|
+
}
|
44
|
+
end
|
45
|
+
return parsed_versions
|
46
|
+
end
|
47
|
+
|
48
|
+
# transforms user-set versions to iTC ones
|
28
49
|
def versions=(value = {})
|
29
50
|
if value.kind_of?(Array)
|
30
51
|
# input that comes from iTC api
|
@@ -36,7 +57,8 @@ module Spaceship
|
|
36
57
|
"value" => {
|
37
58
|
"subscriptionName" => { "value" => current_version[:subscription_name] },
|
38
59
|
"name" => { "value" => current_version[:name] },
|
39
|
-
"localeCode" => { "value" => language }
|
60
|
+
"localeCode" => { "value" => language },
|
61
|
+
"id" => current_version[:id]
|
40
62
|
}
|
41
63
|
}
|
42
64
|
end
|
@@ -44,20 +66,6 @@ module Spaceship
|
|
44
66
|
raw_data.set(["details"], { "value" => new_versions })
|
45
67
|
end
|
46
68
|
|
47
|
-
# @return (Hash) localized names
|
48
|
-
def versions
|
49
|
-
parsed_versions = {}
|
50
|
-
raw_versions = raw_data["details"]["value"]
|
51
|
-
raw_versions.each do |version|
|
52
|
-
language = version["value"]["localeCode"]["value"]
|
53
|
-
parsed_versions[language.to_sym] = {
|
54
|
-
subscription_name: version["value"]["subscriptionName"]["value"],
|
55
|
-
name: version["value"]["name"]["value"]
|
56
|
-
}
|
57
|
-
end
|
58
|
-
return parsed_versions
|
59
|
-
end
|
60
|
-
|
61
69
|
# modify existing family
|
62
70
|
def save!
|
63
71
|
# Transform localization versions back to original format.
|
@@ -67,7 +75,8 @@ module Spaceship
|
|
67
75
|
"value" => {
|
68
76
|
"subscriptionName" => { "value" => value[:subscription_name] },
|
69
77
|
"name" => { "value" => value[:name] },
|
70
|
-
"localeCode" => { "value" => language_code.to_s }
|
78
|
+
"localeCode" => { "value" => language_code.to_s },
|
79
|
+
"id" => value[:id]
|
71
80
|
}
|
72
81
|
}
|
73
82
|
end
|
@@ -28,6 +28,9 @@ module Spaceship
|
|
28
28
|
# The developer took the app from the App Store
|
29
29
|
DEVELOPER_REMOVED_FROM_SALE = "Developer Removed From Sale"
|
30
30
|
|
31
|
+
# In-app purchase need developer's action
|
32
|
+
DEVELOPER_ACTION_NEEDED = "Developer Action Needed"
|
33
|
+
|
31
34
|
# Get the iap status matching based on a string (given by App Store Connect)
|
32
35
|
def self.get_from_string(text)
|
33
36
|
mapping = {
|
@@ -38,7 +41,8 @@ module Spaceship
|
|
38
41
|
'readyForSale' => APPROVED,
|
39
42
|
'deleted' => DELETED,
|
40
43
|
'rejected' => REJECTED,
|
41
|
-
'developerRemovedFromSale' => DEVELOPER_REMOVED_FROM_SALE
|
44
|
+
'developerRemovedFromSale' => DEVELOPER_REMOVED_FROM_SALE,
|
45
|
+
'developerActionNeeded' => DEVELOPER_ACTION_NEEDED
|
42
46
|
}
|
43
47
|
|
44
48
|
mapping.each do |itc_status, readable_status|
|
@@ -400,7 +400,7 @@ module Spaceship
|
|
400
400
|
rating_url << "sort=REVIEW_SORT_ORDER_MOST_RECENT"
|
401
401
|
rating_url << "&index=#{index}"
|
402
402
|
rating_url << "&storefront=#{storefront}" unless storefront.empty?
|
403
|
-
rating_url << "&
|
403
|
+
rating_url << "&versionId=#{version_id}" unless version_id.empty?
|
404
404
|
|
405
405
|
r = request(:get, rating_url)
|
406
406
|
all_reviews.concat(parse_response(r, 'data')['reviews'])
|
@@ -627,7 +627,7 @@ module Spaceship
|
|
627
627
|
handle_itc_response(r.body)
|
628
628
|
end
|
629
629
|
|
630
|
-
def transform_to_raw_pricing_intervals(app_id = nil, purchase_id = nil, pricing_intervals =
|
630
|
+
def transform_to_raw_pricing_intervals(app_id = nil, purchase_id = nil, pricing_intervals = 5, subscription_price_target = nil)
|
631
631
|
intervals_array = []
|
632
632
|
if pricing_intervals
|
633
633
|
intervals_array = pricing_intervals.map do |interval|
|
data/supply/lib/supply/client.rb
CHANGED
@@ -310,6 +310,19 @@ module Supply
|
|
310
310
|
return result_upload.version_code
|
311
311
|
end
|
312
312
|
|
313
|
+
def upload_apk_to_internal_app_sharing(package_name, path_to_apk)
|
314
|
+
# NOTE: This Google API is a little different. It doesn't require an active edit.
|
315
|
+
result_upload = call_google_api do
|
316
|
+
client.uploadapk_internalappsharingartifact(
|
317
|
+
package_name,
|
318
|
+
upload_source: path_to_apk,
|
319
|
+
content_type: "application/octet-stream"
|
320
|
+
)
|
321
|
+
end
|
322
|
+
|
323
|
+
return result_upload.download_url
|
324
|
+
end
|
325
|
+
|
313
326
|
def upload_mapping(path_to_mapping, apk_version_code)
|
314
327
|
ensure_active_edit!
|
315
328
|
|
@@ -340,6 +353,19 @@ module Supply
|
|
340
353
|
return result_upload.version_code
|
341
354
|
end
|
342
355
|
|
356
|
+
def upload_bundle_to_internal_app_sharing(package_name, path_to_aab)
|
357
|
+
# NOTE: This Google API is a little different. It doesn't require an active edit.
|
358
|
+
result_upload = call_google_api do
|
359
|
+
client.uploadbundle_internalappsharingartifact(
|
360
|
+
package_name,
|
361
|
+
upload_source: path_to_aab,
|
362
|
+
content_type: "application/octet-stream"
|
363
|
+
)
|
364
|
+
end
|
365
|
+
|
366
|
+
return result_upload.download_url
|
367
|
+
end
|
368
|
+
|
343
369
|
# Get a list of all tracks - returns the list
|
344
370
|
def tracks(*tracknames)
|
345
371
|
ensure_active_edit!
|
@@ -42,6 +42,34 @@ module Supply
|
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
45
|
+
def perform_upload_to_internal_app_sharing
|
46
|
+
download_urls = []
|
47
|
+
|
48
|
+
package_name = Supply.config[:package_name]
|
49
|
+
|
50
|
+
apk_paths = [Supply.config[:apk]] unless (apk_paths = Supply.config[:apk_paths])
|
51
|
+
apk_paths.compact!
|
52
|
+
apk_paths.each do |apk_path|
|
53
|
+
download_url = client.upload_apk_to_internal_app_sharing(package_name, apk_path)
|
54
|
+
download_urls << download_url
|
55
|
+
UI.success("Successfully uploaded APK to Internal App Sharing URL: #{download_url}")
|
56
|
+
end
|
57
|
+
|
58
|
+
aab_paths = [Supply.config[:aab]] unless (aab_paths = Supply.config[:aab_paths])
|
59
|
+
aab_paths.compact!
|
60
|
+
aab_paths.each do |aab_path|
|
61
|
+
download_url = client.upload_bundle_to_internal_app_sharing(package_name, aab_path)
|
62
|
+
download_urls << download_url
|
63
|
+
UI.success("Successfully uploaded AAB to Internal App Sharing URL: #{download_url}")
|
64
|
+
end
|
65
|
+
|
66
|
+
if download_urls.count == 1
|
67
|
+
return download_urls.first
|
68
|
+
else
|
69
|
+
return download_urls
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
45
73
|
def perform_upload_meta(version_codes)
|
46
74
|
if (!Supply.config[:skip_upload_metadata] || !Supply.config[:skip_upload_images] || !Supply.config[:skip_upload_changelogs] || !Supply.config[:skip_upload_screenshots]) && metadata_path
|
47
75
|
# Use version code from config if version codes is empty and no nil or empty string
|
metadata
CHANGED
@@ -1,33 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.143.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Jorge Revuelta H
|
8
7
|
- Joshua Liebowitz
|
9
|
-
-
|
10
|
-
-
|
8
|
+
- Stefan Natchev
|
9
|
+
- Andrew McBurney
|
10
|
+
- Aaron Brager
|
11
|
+
- Fumiya Nakamura
|
12
|
+
- Daniel Jankowski
|
11
13
|
- Kohki Miki
|
14
|
+
- Jorge Revuelta H
|
15
|
+
- Matthew Ellis
|
12
16
|
- Luka Mirosevic
|
13
17
|
- Iulian Onofrei
|
14
|
-
-
|
15
|
-
-
|
18
|
+
- Danielle Tomlinson
|
19
|
+
- Josh Holtz
|
16
20
|
- Manu Wallner
|
17
|
-
-
|
18
|
-
-
|
21
|
+
- Jimmy Dee
|
22
|
+
- Helmut Januschka
|
19
23
|
- Felix Krause
|
20
|
-
- Jan Piotrowski
|
21
24
|
- Jérôme Lacoste
|
22
|
-
- Helmut Januschka
|
23
|
-
- Fumiya Nakamura
|
24
|
-
- Andrew McBurney
|
25
25
|
- Olivier Halligon
|
26
|
-
-
|
26
|
+
- Max Ott
|
27
|
+
- Jan Piotrowski
|
28
|
+
- Maksym Grebenets
|
27
29
|
autorequire:
|
28
30
|
bindir: bin
|
29
31
|
cert_chain: []
|
30
|
-
date:
|
32
|
+
date: 2020-03-04 00:00:00.000000000 Z
|
31
33
|
dependencies:
|
32
34
|
- !ruby/object:Gem::Dependency
|
33
35
|
name: slack-notifier
|
@@ -611,20 +613,20 @@ dependencies:
|
|
611
613
|
requirements:
|
612
614
|
- - ">="
|
613
615
|
- !ruby/object:Gem::Version
|
614
|
-
version: 0.
|
616
|
+
version: 0.29.2
|
615
617
|
- - "<"
|
616
618
|
- !ruby/object:Gem::Version
|
617
|
-
version: 0.
|
619
|
+
version: 0.37.0
|
618
620
|
type: :runtime
|
619
621
|
prerelease: false
|
620
622
|
version_requirements: !ruby/object:Gem::Requirement
|
621
623
|
requirements:
|
622
624
|
- - ">="
|
623
625
|
- !ruby/object:Gem::Version
|
624
|
-
version: 0.
|
626
|
+
version: 0.29.2
|
625
627
|
- - "<"
|
626
628
|
- !ruby/object:Gem::Version
|
627
|
-
version: 0.
|
629
|
+
version: 0.37.0
|
628
630
|
- !ruby/object:Gem::Dependency
|
629
631
|
name: google-cloud-storage
|
630
632
|
requirement: !ruby/object:Gem::Requirement
|
@@ -665,6 +667,20 @@ dependencies:
|
|
665
667
|
- - "<"
|
666
668
|
- !ruby/object:Gem::Version
|
667
669
|
version: '2.0'
|
670
|
+
- !ruby/object:Gem::Dependency
|
671
|
+
name: aws-sdk
|
672
|
+
requirement: !ruby/object:Gem::Requirement
|
673
|
+
requirements:
|
674
|
+
- - "~>"
|
675
|
+
- !ruby/object:Gem::Version
|
676
|
+
version: '2.3'
|
677
|
+
type: :runtime
|
678
|
+
prerelease: false
|
679
|
+
version_requirements: !ruby/object:Gem::Requirement
|
680
|
+
requirements:
|
681
|
+
- - "~>"
|
682
|
+
- !ruby/object:Gem::Version
|
683
|
+
version: '2.3'
|
668
684
|
- !ruby/object:Gem::Dependency
|
669
685
|
name: rake
|
670
686
|
requirement: !ruby/object:Gem::Requirement
|
@@ -791,6 +807,20 @@ dependencies:
|
|
791
807
|
- - "~>"
|
792
808
|
- !ruby/object:Gem::Version
|
793
809
|
version: 2.3.2
|
810
|
+
- !ruby/object:Gem::Dependency
|
811
|
+
name: hashdiff
|
812
|
+
requirement: !ruby/object:Gem::Requirement
|
813
|
+
requirements:
|
814
|
+
- - "<"
|
815
|
+
- !ruby/object:Gem::Version
|
816
|
+
version: 0.4.0
|
817
|
+
type: :development
|
818
|
+
prerelease: false
|
819
|
+
version_requirements: !ruby/object:Gem::Requirement
|
820
|
+
requirements:
|
821
|
+
- - "<"
|
822
|
+
- !ruby/object:Gem::Version
|
823
|
+
version: 0.4.0
|
794
824
|
- !ruby/object:Gem::Dependency
|
795
825
|
name: coveralls
|
796
826
|
requirement: !ruby/object:Gem::Requirement
|
@@ -986,6 +1016,9 @@ files:
|
|
986
1016
|
- fastlane/lib/fastlane.rb
|
987
1017
|
- fastlane/lib/fastlane/action.rb
|
988
1018
|
- fastlane/lib/fastlane/action_collector.rb
|
1019
|
+
- fastlane/lib/fastlane/actions/.hockey.rb.swp
|
1020
|
+
- fastlane/lib/fastlane/actions/.slack.rb.swp
|
1021
|
+
- fastlane/lib/fastlane/actions/.update_project_provisioning.rb.swp
|
989
1022
|
- fastlane/lib/fastlane/actions/README.md
|
990
1023
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
991
1024
|
- fastlane/lib/fastlane/actions/adb.rb
|
@@ -1009,6 +1042,7 @@ files:
|
|
1009
1042
|
- fastlane/lib/fastlane/actions/build_android_app.rb
|
1010
1043
|
- fastlane/lib/fastlane/actions/build_app.rb
|
1011
1044
|
- fastlane/lib/fastlane/actions/build_ios_app.rb
|
1045
|
+
- fastlane/lib/fastlane/actions/build_mac_app.rb
|
1012
1046
|
- fastlane/lib/fastlane/actions/bundle_install.rb
|
1013
1047
|
- fastlane/lib/fastlane/actions/capture_android_screenshots.rb
|
1014
1048
|
- fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
|
@@ -1039,7 +1073,7 @@ files:
|
|
1039
1073
|
- fastlane/lib/fastlane/actions/deliver.rb
|
1040
1074
|
- fastlane/lib/fastlane/actions/deploygate.rb
|
1041
1075
|
- fastlane/lib/fastlane/actions/device_grid/README.md
|
1042
|
-
- fastlane/lib/fastlane/actions/docs/
|
1076
|
+
- fastlane/lib/fastlane/actions/docs/build_app.md
|
1043
1077
|
- fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md
|
1044
1078
|
- fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md
|
1045
1079
|
- fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md
|
@@ -1123,6 +1157,7 @@ files:
|
|
1123
1157
|
- fastlane/lib/fastlane/actions/min_fastlane_version.rb
|
1124
1158
|
- fastlane/lib/fastlane/actions/modify_services.rb
|
1125
1159
|
- fastlane/lib/fastlane/actions/nexus_upload.rb
|
1160
|
+
- fastlane/lib/fastlane/actions/notarize.rb
|
1126
1161
|
- fastlane/lib/fastlane/actions/notification.rb
|
1127
1162
|
- fastlane/lib/fastlane/actions/notify.rb
|
1128
1163
|
- fastlane/lib/fastlane/actions/number_of_commits.rb
|
@@ -1206,6 +1241,7 @@ files:
|
|
1206
1241
|
- fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb
|
1207
1242
|
- fastlane/lib/fastlane/actions/upload_to_app_store.rb
|
1208
1243
|
- fastlane/lib/fastlane/actions/upload_to_play_store.rb
|
1244
|
+
- fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb
|
1209
1245
|
- fastlane/lib/fastlane/actions/upload_to_testflight.rb
|
1210
1246
|
- fastlane/lib/fastlane/actions/validate_play_store_json_key.rb
|
1211
1247
|
- fastlane/lib/fastlane/actions/verify_build.rb
|
@@ -1244,6 +1280,7 @@ files:
|
|
1244
1280
|
- fastlane/lib/fastlane/helper/git_helper.rb
|
1245
1281
|
- fastlane/lib/fastlane/helper/gradle_helper.rb
|
1246
1282
|
- fastlane/lib/fastlane/helper/podspec_helper.rb
|
1283
|
+
- fastlane/lib/fastlane/helper/s3_client_helper.rb
|
1247
1284
|
- fastlane/lib/fastlane/helper/sh_helper.rb
|
1248
1285
|
- fastlane/lib/fastlane/helper/xcodeproj_helper.rb
|
1249
1286
|
- fastlane/lib/fastlane/helper/xcversion_helper.rb
|
@@ -1314,6 +1351,7 @@ files:
|
|
1314
1351
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
|
1315
1352
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
1316
1353
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
1354
|
+
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate
|
1317
1355
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
|
1318
1356
|
- fastlane/swift/FastlaneSwiftRunner/README.txt
|
1319
1357
|
- fastlane/swift/Gymfile.swift
|
@@ -1403,6 +1441,7 @@ files:
|
|
1403
1441
|
- frameit/lib/frameit/commands_generator.rb
|
1404
1442
|
- frameit/lib/frameit/config_parser.rb
|
1405
1443
|
- frameit/lib/frameit/dependency_checker.rb
|
1444
|
+
- frameit/lib/frameit/device.rb
|
1406
1445
|
- frameit/lib/frameit/device_types.rb
|
1407
1446
|
- frameit/lib/frameit/editor.rb
|
1408
1447
|
- frameit/lib/frameit/frame_downloader.rb
|
@@ -1458,6 +1497,7 @@ files:
|
|
1458
1497
|
- match/lib/match/storage/git_storage.rb
|
1459
1498
|
- match/lib/match/storage/google_cloud_storage.rb
|
1460
1499
|
- match/lib/match/storage/interface.rb
|
1500
|
+
- match/lib/match/storage/s3_storage.rb
|
1461
1501
|
- match/lib/match/table_printer.rb
|
1462
1502
|
- match/lib/match/utils.rb
|
1463
1503
|
- pem/README.md
|
@@ -1468,6 +1508,7 @@ files:
|
|
1468
1508
|
- pem/lib/pem/options.rb
|
1469
1509
|
- pilot/README.md
|
1470
1510
|
- pilot/lib/pilot.rb
|
1511
|
+
- pilot/lib/pilot/.manager.rb.swp
|
1471
1512
|
- pilot/lib/pilot/build_manager.rb
|
1472
1513
|
- pilot/lib/pilot/commands_generator.rb
|
1473
1514
|
- pilot/lib/pilot/features.rb
|
@@ -1570,6 +1611,7 @@ files:
|
|
1570
1611
|
- snapshot/lib/snapshot/error_handler.rb
|
1571
1612
|
- snapshot/lib/snapshot/fixes/README.md
|
1572
1613
|
- snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb
|
1614
|
+
- snapshot/lib/snapshot/fixes/simulator_shared_pasteboard.rb
|
1573
1615
|
- snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb
|
1574
1616
|
- snapshot/lib/snapshot/latest_os_version.rb
|
1575
1617
|
- snapshot/lib/snapshot/module.rb
|
@@ -1599,6 +1641,7 @@ files:
|
|
1599
1641
|
- spaceship/lib/spaceship/client.rb
|
1600
1642
|
- spaceship/lib/spaceship/commands_generator.rb
|
1601
1643
|
- spaceship/lib/spaceship/connect_api.rb
|
1644
|
+
- spaceship/lib/spaceship/connect_api/.DS_Store
|
1602
1645
|
- spaceship/lib/spaceship/connect_api/client.rb
|
1603
1646
|
- spaceship/lib/spaceship/connect_api/model.rb
|
1604
1647
|
- spaceship/lib/spaceship/connect_api/models/app.rb
|
@@ -1641,6 +1684,7 @@ files:
|
|
1641
1684
|
- spaceship/lib/spaceship/launcher.rb
|
1642
1685
|
- spaceship/lib/spaceship/module.rb
|
1643
1686
|
- spaceship/lib/spaceship/playground.rb
|
1687
|
+
- spaceship/lib/spaceship/portal/.certificate.rb.swp
|
1644
1688
|
- spaceship/lib/spaceship/portal/app.rb
|
1645
1689
|
- spaceship/lib/spaceship/portal/app_group.rb
|
1646
1690
|
- spaceship/lib/spaceship/portal/app_service.rb
|
@@ -1780,7 +1824,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1780
1824
|
- !ruby/object:Gem::Version
|
1781
1825
|
version: '0'
|
1782
1826
|
requirements: []
|
1783
|
-
rubygems_version: 3.0.
|
1827
|
+
rubygems_version: 3.0.3
|
1784
1828
|
signing_key:
|
1785
1829
|
specification_version: 4
|
1786
1830
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|