fastlane 2.139.0 → 2.144.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 +85 -72
- data/cert/lib/cert/options.rb +12 -5
- data/cert/lib/cert/runner.rb +13 -0
- data/deliver/lib/deliver/options.rb +28 -2
- data/deliver/lib/deliver/runner.rb +13 -2
- data/fastlane/lib/fastlane/action.rb +1 -1
- 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/automatic_code_signing.rb +7 -1
- 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/clean_build_artifacts.rb +3 -0
- data/fastlane/lib/fastlane/actions/cocoapods.rb +2 -2
- data/fastlane/lib/fastlane/actions/crashlytics.rb +14 -2
- data/fastlane/lib/fastlane/actions/create_pull_request.rb +29 -0
- 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 +22 -6
- 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/latest_testflight_build_number.rb +9 -3
- data/fastlane/lib/fastlane/actions/notarize.rb +183 -0
- data/fastlane/lib/fastlane/actions/pod_lib_lint.rb +7 -1
- 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/spm.rb +8 -0
- data/fastlane/lib/fastlane/actions/swiftlint.rb +45 -9
- data/fastlane/lib/fastlane/actions/update_code_signing_settings.rb +190 -0
- 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/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 +422 -45
- 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/cert_checker.rb +28 -0
- data/fastlane_core/lib/fastlane_core/device_manager.rb +1 -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/fastlane_core/lib/fastlane_core/provisioning_profile.rb +15 -2
- 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 +28 -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/package_command_generator.rb +8 -0
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +52 -17
- data/gym/lib/gym/module.rb +8 -0
- data/gym/lib/gym/options.rb +25 -1
- data/gym/lib/gym/runner.rb +70 -21
- 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 +35 -20
- 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 +24 -9
- 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 +9 -7
- data/scan/lib/scan/slack_poster.rb +1 -1
- data/scan/lib/scan/test_command_generator.rb +12 -5
- data/screengrab/lib/screengrab/runner.rb +31 -18
- data/sigh/lib/sigh/.runner.rb.swp +0 -0
- 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/.bundle_id.rb.swp +0 -0
- data/{gym/lib/gym/.runner.rb.swp → spaceship/lib/spaceship/connect_api/models/.bundle_id_capability.rb.swp} +0 -0
- data/spaceship/lib/spaceship/connect_api/models/app.rb +11 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_feedback.rb +4 -0
- data/spaceship/lib/spaceship/connect_api/models/build.rb +1 -2
- data/spaceship/lib/spaceship/connect_api/models/certificate.rb +2 -0
- data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +29 -0
- data/spaceship/lib/spaceship/portal/app.rb +11 -2
- data/spaceship/lib/spaceship/tunes/app_version.rb +6 -1
- 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 +1 -1
- metadata +63 -18
@@ -80,7 +80,9 @@ module Spaceship
|
|
80
80
|
language = localized_version["value"]["localeCode"]
|
81
81
|
parsed_versions[language.to_sym] = {
|
82
82
|
name: localized_version["value"]["name"]["value"],
|
83
|
-
description: localized_version["value"]["description"]["value"]
|
83
|
+
description: localized_version["value"]["description"]["value"],
|
84
|
+
id: localized_version["value"]["id"],
|
85
|
+
status: localized_version["value"]["status"]
|
84
86
|
}
|
85
87
|
end
|
86
88
|
return parsed_versions
|
@@ -98,7 +100,8 @@ module Spaceship
|
|
98
100
|
"value" => {
|
99
101
|
"name" => { "value" => current_version[:name] },
|
100
102
|
"description" => { "value" => current_version[:description] },
|
101
|
-
"localeCode" =>
|
103
|
+
"localeCode" => language.to_s,
|
104
|
+
"id" => current_version[:id]
|
102
105
|
}
|
103
106
|
}
|
104
107
|
end
|
@@ -167,7 +170,8 @@ module Spaceship
|
|
167
170
|
"value" => {
|
168
171
|
"description" => { "value" => value[:description] },
|
169
172
|
"name" => { "value" => value[:name] },
|
170
|
-
"localeCode" => language.to_s
|
173
|
+
"localeCode" => language.to_s,
|
174
|
+
"id" => value[:id]
|
171
175
|
}
|
172
176
|
}
|
173
177
|
end
|
@@ -40,7 +40,7 @@ module Spaceship
|
|
40
40
|
client.create_iap_family(app_id: self.application.apple_id, name: name, product_id: product_id, reference_name: reference_name, versions: versions_array)
|
41
41
|
end
|
42
42
|
|
43
|
-
# returns a list of all families
|
43
|
+
# returns a list of all available subscription groups/families of the current In-App-Purchase
|
44
44
|
def all
|
45
45
|
r = client.iap_families(app_id: self.application.apple_id)
|
46
46
|
return_families = []
|
@@ -52,6 +52,17 @@ module Spaceship
|
|
52
52
|
end
|
53
53
|
return_families
|
54
54
|
end
|
55
|
+
|
56
|
+
# find a specific family
|
57
|
+
# @param family_id (String) Family Id
|
58
|
+
def find(family_id)
|
59
|
+
all.each do |family|
|
60
|
+
if family.family_id == family_id
|
61
|
+
return family
|
62
|
+
end
|
63
|
+
end
|
64
|
+
return nil
|
65
|
+
end
|
55
66
|
end
|
56
67
|
end
|
57
68
|
end
|
@@ -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
@@ -405,7 +405,7 @@ module Supply
|
|
405
405
|
)
|
406
406
|
return result.releases.flat_map(&:version_codes) || []
|
407
407
|
rescue Google::Apis::ClientError => e
|
408
|
-
return [] if e.status_code == 404 && e.to_s.include?("trackEmpty")
|
408
|
+
return [] if e.status_code == 404 && (e.to_s.include?("trackEmpty") || e.to_s.include?("Track not found"))
|
409
409
|
raise
|
410
410
|
end
|
411
411
|
end
|
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.144.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
-
|
7
|
+
- Danielle Tomlinson
|
8
|
+
- Max Ott
|
9
|
+
- Daniel Jankowski
|
9
10
|
- Helmut Januschka
|
10
|
-
-
|
11
|
-
-
|
12
|
-
- Jérôme Lacoste
|
11
|
+
- Josh Holtz
|
12
|
+
- Kohki Miki
|
13
13
|
- Iulian Onofrei
|
14
|
-
-
|
14
|
+
- Felix Krause
|
15
|
+
- Matthew Ellis
|
15
16
|
- Stefan Natchev
|
16
|
-
-
|
17
|
+
- Olivier Halligon
|
18
|
+
- Luka Mirosevic
|
17
19
|
- Jan Piotrowski
|
18
|
-
- Felix Krause
|
19
|
-
- Danielle Tomlinson
|
20
|
-
- Aaron Brager
|
21
20
|
- Joshua Liebowitz
|
22
|
-
- Matthew Ellis
|
23
21
|
- Maksym Grebenets
|
24
|
-
- Luka Mirosevic
|
25
|
-
- Olivier Halligon
|
26
22
|
- Fumiya Nakamura
|
23
|
+
- Jimmy Dee
|
24
|
+
- Jorge Revuelta H
|
25
|
+
- Jérôme Lacoste
|
26
|
+
- Andrew McBurney
|
27
|
+
- Aaron Brager
|
28
|
+
- Manu Wallner
|
27
29
|
autorequire:
|
28
30
|
bindir: bin
|
29
31
|
cert_chain: []
|
30
|
-
date:
|
32
|
+
date: 2020-03-24 00:00:00.000000000 Z
|
31
33
|
dependencies:
|
32
34
|
- !ruby/object:Gem::Dependency
|
33
35
|
name: slack-notifier
|
@@ -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-s3
|
672
|
+
requirement: !ruby/object:Gem::Requirement
|
673
|
+
requirements:
|
674
|
+
- - "~>"
|
675
|
+
- !ruby/object:Gem::Version
|
676
|
+
version: '1.0'
|
677
|
+
type: :runtime
|
678
|
+
prerelease: false
|
679
|
+
version_requirements: !ruby/object:Gem::Requirement
|
680
|
+
requirements:
|
681
|
+
- - "~>"
|
682
|
+
- !ruby/object:Gem::Version
|
683
|
+
version: '1.0'
|
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
|
@@ -1192,6 +1227,7 @@ files:
|
|
1192
1227
|
- fastlane/lib/fastlane/actions/unlock_keychain.rb
|
1193
1228
|
- fastlane/lib/fastlane/actions/update_app_group_identifiers.rb
|
1194
1229
|
- fastlane/lib/fastlane/actions/update_app_identifier.rb
|
1230
|
+
- fastlane/lib/fastlane/actions/update_code_signing_settings.rb
|
1195
1231
|
- fastlane/lib/fastlane/actions/update_fastlane.rb
|
1196
1232
|
- fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb
|
1197
1233
|
- fastlane/lib/fastlane/actions/update_info_plist.rb
|
@@ -1245,6 +1281,7 @@ files:
|
|
1245
1281
|
- fastlane/lib/fastlane/helper/git_helper.rb
|
1246
1282
|
- fastlane/lib/fastlane/helper/gradle_helper.rb
|
1247
1283
|
- fastlane/lib/fastlane/helper/podspec_helper.rb
|
1284
|
+
- fastlane/lib/fastlane/helper/s3_client_helper.rb
|
1248
1285
|
- fastlane/lib/fastlane/helper/sh_helper.rb
|
1249
1286
|
- fastlane/lib/fastlane/helper/xcodeproj_helper.rb
|
1250
1287
|
- fastlane/lib/fastlane/helper/xcversion_helper.rb
|
@@ -1315,6 +1352,7 @@ files:
|
|
1315
1352
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
|
1316
1353
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
1317
1354
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
1355
|
+
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate
|
1318
1356
|
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
|
1319
1357
|
- fastlane/swift/FastlaneSwiftRunner/README.txt
|
1320
1358
|
- fastlane/swift/Gymfile.swift
|
@@ -1404,6 +1442,7 @@ files:
|
|
1404
1442
|
- frameit/lib/frameit/commands_generator.rb
|
1405
1443
|
- frameit/lib/frameit/config_parser.rb
|
1406
1444
|
- frameit/lib/frameit/dependency_checker.rb
|
1445
|
+
- frameit/lib/frameit/device.rb
|
1407
1446
|
- frameit/lib/frameit/device_types.rb
|
1408
1447
|
- frameit/lib/frameit/editor.rb
|
1409
1448
|
- frameit/lib/frameit/frame_downloader.rb
|
@@ -1421,7 +1460,6 @@ files:
|
|
1421
1460
|
- gym/lib/assets/GymfileTemplate.swift
|
1422
1461
|
- gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
|
1423
1462
|
- gym/lib/gym.rb
|
1424
|
-
- gym/lib/gym/.runner.rb.swp
|
1425
1463
|
- gym/lib/gym/code_signing_mapping.rb
|
1426
1464
|
- gym/lib/gym/commands_generator.rb
|
1427
1465
|
- gym/lib/gym/detect_values.rb
|
@@ -1460,6 +1498,7 @@ files:
|
|
1460
1498
|
- match/lib/match/storage/git_storage.rb
|
1461
1499
|
- match/lib/match/storage/google_cloud_storage.rb
|
1462
1500
|
- match/lib/match/storage/interface.rb
|
1501
|
+
- match/lib/match/storage/s3_storage.rb
|
1463
1502
|
- match/lib/match/table_printer.rb
|
1464
1503
|
- match/lib/match/utils.rb
|
1465
1504
|
- pem/README.md
|
@@ -1470,6 +1509,7 @@ files:
|
|
1470
1509
|
- pem/lib/pem/options.rb
|
1471
1510
|
- pilot/README.md
|
1472
1511
|
- pilot/lib/pilot.rb
|
1512
|
+
- pilot/lib/pilot/.manager.rb.swp
|
1473
1513
|
- pilot/lib/pilot/build_manager.rb
|
1474
1514
|
- pilot/lib/pilot/commands_generator.rb
|
1475
1515
|
- pilot/lib/pilot/features.rb
|
@@ -1550,6 +1590,7 @@ files:
|
|
1550
1590
|
- sigh/README.md
|
1551
1591
|
- sigh/lib/assets/resign.sh
|
1552
1592
|
- sigh/lib/sigh.rb
|
1593
|
+
- sigh/lib/sigh/.runner.rb.swp
|
1553
1594
|
- sigh/lib/sigh/commands_generator.rb
|
1554
1595
|
- sigh/lib/sigh/download_all.rb
|
1555
1596
|
- sigh/lib/sigh/local_manage.rb
|
@@ -1572,6 +1613,7 @@ files:
|
|
1572
1613
|
- snapshot/lib/snapshot/error_handler.rb
|
1573
1614
|
- snapshot/lib/snapshot/fixes/README.md
|
1574
1615
|
- snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb
|
1616
|
+
- snapshot/lib/snapshot/fixes/simulator_shared_pasteboard.rb
|
1575
1617
|
- snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb
|
1576
1618
|
- snapshot/lib/snapshot/latest_os_version.rb
|
1577
1619
|
- snapshot/lib/snapshot/module.rb
|
@@ -1601,8 +1643,11 @@ files:
|
|
1601
1643
|
- spaceship/lib/spaceship/client.rb
|
1602
1644
|
- spaceship/lib/spaceship/commands_generator.rb
|
1603
1645
|
- spaceship/lib/spaceship/connect_api.rb
|
1646
|
+
- spaceship/lib/spaceship/connect_api/.DS_Store
|
1604
1647
|
- spaceship/lib/spaceship/connect_api/client.rb
|
1605
1648
|
- spaceship/lib/spaceship/connect_api/model.rb
|
1649
|
+
- spaceship/lib/spaceship/connect_api/models/.bundle_id.rb.swp
|
1650
|
+
- spaceship/lib/spaceship/connect_api/models/.bundle_id_capability.rb.swp
|
1606
1651
|
- spaceship/lib/spaceship/connect_api/models/app.rb
|
1607
1652
|
- spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb
|
1608
1653
|
- spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb
|
@@ -1782,7 +1827,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1782
1827
|
- !ruby/object:Gem::Version
|
1783
1828
|
version: '0'
|
1784
1829
|
requirements: []
|
1785
|
-
rubygems_version: 3.0.
|
1830
|
+
rubygems_version: 3.0.3
|
1786
1831
|
signing_key:
|
1787
1832
|
specification_version: 4
|
1788
1833
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|