fastlane 2.176.0 → 2.180.1
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 +97 -84
- data/cert/lib/cert/options.rb +1 -0
- data/cert/lib/cert/runner.rb +5 -1
- data/deliver/lib/deliver/app_screenshot.rb +6 -2
- data/deliver/lib/deliver/download_screenshots.rb +1 -2
- data/deliver/lib/deliver/options.rb +1 -0
- data/deliver/lib/deliver/runner.rb +11 -3
- data/deliver/lib/deliver/setup.rb +0 -1
- data/deliver/lib/deliver/upload_metadata.rb +5 -4
- data/deliver/lib/deliver/upload_screenshots.rb +10 -10
- data/fastlane/lib/fastlane/.fastlane_require.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/.cocoapods.rb.swp +0 -0
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +6 -1
- data/fastlane/lib/fastlane/actions/app_store_connect_api_key.rb +8 -5
- data/fastlane/lib/fastlane/actions/appaloosa.rb +7 -2
- data/fastlane/lib/fastlane/actions/backup_file.rb +1 -1
- data/fastlane/lib/fastlane/actions/build_app.rb +4 -0
- data/fastlane/lib/fastlane/actions/check_app_store_metadata.rb +4 -0
- data/fastlane/lib/fastlane/actions/commit_github_file.rb +11 -1
- data/fastlane/lib/fastlane/actions/create_xcframework.rb +5 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +2 -1
- data/fastlane/lib/fastlane/actions/get_github_release.rb +11 -1
- data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +4 -0
- data/fastlane/lib/fastlane/actions/get_version_number.rb +17 -10
- data/fastlane/lib/fastlane/actions/git_branch.rb +4 -10
- data/fastlane/lib/fastlane/actions/git_tag_exists.rb +4 -0
- data/fastlane/lib/fastlane/actions/github_api.rb +2 -1
- data/fastlane/lib/fastlane/actions/increment_build_number.rb +8 -1
- data/fastlane/lib/fastlane/actions/install_provisioning_profile.rb +4 -0
- data/fastlane/lib/fastlane/actions/jira.rb +61 -14
- data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +1 -0
- data/fastlane/lib/fastlane/actions/match_nuke.rb +59 -0
- data/fastlane/lib/fastlane/actions/notarize.rb +98 -51
- data/fastlane/lib/fastlane/actions/push_to_git_remote.rb +0 -1
- data/fastlane/lib/fastlane/actions/register_device.rb +1 -1
- data/fastlane/lib/fastlane/actions/register_devices.rb +1 -1
- data/fastlane/lib/fastlane/actions/restore_file.rb +1 -1
- data/fastlane/lib/fastlane/actions/set_changelog.rb +1 -1
- data/fastlane/lib/fastlane/actions/sourcedocs.rb +164 -0
- data/fastlane/lib/fastlane/actions/spaceship_logs.rb +1 -1
- data/fastlane/lib/fastlane/actions/update_project_provisioning.rb +1 -2
- data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +4 -5
- data/fastlane/lib/fastlane/erb_template_helper.rb +7 -1
- data/fastlane/lib/fastlane/fast_file.rb +9 -5
- data/fastlane/lib/fastlane/fastlane_require.rb +7 -1
- data/fastlane/lib/fastlane/helper/git_helper.rb +11 -7
- data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +1 -2
- data/fastlane/lib/fastlane/plugins/plugin_info_collector.rb +1 -2
- data/fastlane/lib/fastlane/plugins/plugin_manager.rb +1 -2
- data/fastlane/lib/fastlane/setup/setup.rb +23 -10
- data/fastlane/lib/fastlane/swift_fastlane_function.rb +4 -0
- data/fastlane/lib/fastlane/swift_runner_upgrader.rb +2 -0
- 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 +557 -326
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/GymfileProtocol.swift +1 -1
- data/fastlane/swift/LaneFileProtocol.swift +9 -3
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/MatchfileProtocol.swift +1 -1
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/PrecheckfileProtocol.swift +3 -3
- data/fastlane/swift/RubyCommand.swift +1 -1
- data/fastlane/swift/Scanfile.swift +1 -1
- data/fastlane/swift/ScanfileProtocol.swift +9 -1
- data/fastlane/swift/Screengrabfile.swift +1 -1
- data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
- data/fastlane/swift/Snapshotfile.swift +1 -1
- data/fastlane/swift/SnapshotfileProtocol.swift +1 -1
- data/fastlane/swift/SocketClient.swift +2 -1
- data/fastlane/swift/SocketResponse.swift +4 -2
- data/fastlane/swift/formatting/Brewfile.lock.json +13 -13
- data/fastlane_core/lib/fastlane_core.rb +1 -0
- data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +5 -3
- data/fastlane_core/lib/fastlane_core/helper.rb +24 -1
- data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +3 -2
- data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +14 -8
- data/fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb +3 -2
- data/fastlane_core/lib/fastlane_core/project.rb +3 -14
- data/{deliver/lib/deliver → fastlane_core/lib/fastlane_core}/queue_worker.rb +4 -4
- data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +12 -1
- data/fastlane_core/lib/fastlane_core/ui/interface.rb +1 -1
- data/gym/lib/gym/generators/.package_command_generator_xcode7.rb.swp +0 -0
- data/gym/lib/gym/generators/package_command_generator.rb +4 -0
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +13 -8
- data/gym/lib/gym/runner.rb +11 -4
- data/match/lib/match/change_password.rb +3 -3
- data/match/lib/match/encryption/interface.rb +1 -1
- data/match/lib/match/encryption/openssl.rb +2 -2
- data/match/lib/match/importer.rb +1 -1
- data/match/lib/match/migrate.rb +1 -1
- data/match/lib/match/module.rb +1 -0
- data/match/lib/match/nuke.rb +1 -1
- data/match/lib/match/runner.rb +1 -1
- data/match/lib/match/storage/google_cloud_storage.rb +1 -1
- data/match/lib/match/storage/s3_storage.rb +1 -1
- data/pilot/lib/pilot/build_manager.rb +18 -6
- data/pilot/lib/pilot/manager.rb +5 -1
- data/pilot/lib/pilot/options.rb +3 -2
- data/precheck/lib/precheck/options.rb +1 -0
- data/precheck/lib/precheck/runner.rb +5 -1
- data/scan/lib/scan/detect_values.rb +4 -1
- data/scan/lib/scan/options.rb +15 -5
- data/scan/lib/scan/runner.rb +52 -1
- data/scan/lib/scan/test_command_generator.rb +8 -8
- data/screengrab/lib/screengrab/android_environment.rb +6 -4
- data/screengrab/lib/screengrab/runner.rb +1 -1
- data/sigh/lib/sigh/download_all.rb +1 -1
- data/sigh/lib/sigh/options.rb +1 -0
- data/sigh/lib/sigh/runner.rb +5 -1
- data/snapshot/lib/assets/SnapshotHelper.swift +1 -1
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +2 -1
- data/spaceship/lib/spaceship/client.rb +18 -17
- data/spaceship/lib/spaceship/connect_api/api_client.rb +24 -6
- data/spaceship/lib/spaceship/connect_api/models/app.rb +1 -1
- data/spaceship/lib/spaceship/connect_api/models/app_preview_set.rb +5 -0
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +1 -1
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +5 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +6 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_group.rb +5 -0
- data/spaceship/lib/spaceship/connect_api/models/build.rb +5 -0
- data/spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb +4 -0
- data/spaceship/lib/spaceship/connect_api/models/user_invitation.rb +13 -0
- data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +13 -0
- data/spaceship/lib/spaceship/connect_api/token.rb +8 -2
- data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +15 -0
- metadata +28 -22
- data/pilot/lib/pilot/.build_manager.rb.swp +0 -0
@@ -123,6 +123,11 @@ module Spaceship
|
|
123
123
|
return client.get_app_screenshot_set(app_screenshot_set_id: app_screenshot_set_id, filter: nil, includes: includes, limit: nil, sort: nil).first
|
124
124
|
end
|
125
125
|
|
126
|
+
def delete!(client: nil, filter: {}, includes: nil, limit: nil, sort: nil)
|
127
|
+
client ||= Spaceship::ConnectAPI
|
128
|
+
return client.delete_app_screenshot_set(app_screenshot_set_id: id)
|
129
|
+
end
|
130
|
+
|
126
131
|
def upload_screenshot(client: nil, path: nil, wait_for_processing: true, position: nil)
|
127
132
|
client ||= Spaceship::ConnectAPI
|
128
133
|
screenshot = Spaceship::ConnectAPI::AppScreenshot.create(client: client, app_screenshot_set_id: id, path: path, wait_for_processing: wait_for_processing)
|
@@ -39,6 +39,12 @@ module Spaceship
|
|
39
39
|
# API
|
40
40
|
#
|
41
41
|
|
42
|
+
def self.get(client: nil, app_store_version_localization_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
|
43
|
+
client ||= Spaceship::ConnectAPI
|
44
|
+
resp = client.get_app_store_version_localization(app_store_version_localization_id: app_store_version_localization_id, filter: filter, includes: includes, limit: limit, sort: sort)
|
45
|
+
return resp.to_models
|
46
|
+
end
|
47
|
+
|
42
48
|
def self.all(client: nil, app_store_version_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
|
43
49
|
client ||= Spaceship::ConnectAPI
|
44
50
|
resp = client.get_app_store_version_localizations(app_store_version_id: app_store_version_id, filter: filter, includes: includes, limit: limit, sort: sort)
|
@@ -38,6 +38,11 @@ module Spaceship
|
|
38
38
|
return client.post_bulk_beta_tester_assignments(beta_group_id: id, beta_testers: beta_testers)
|
39
39
|
end
|
40
40
|
|
41
|
+
def add_beta_testers(client: nil, beta_tester_ids:)
|
42
|
+
client ||= Spaceship::ConnectAPI
|
43
|
+
return client.add_beta_tester_to_group(beta_group_id: id, beta_tester_ids: beta_tester_ids)
|
44
|
+
end
|
45
|
+
|
41
46
|
def update(client: nil, attributes: nil)
|
42
47
|
return if attributes.empty?
|
43
48
|
|
@@ -87,6 +87,11 @@ module Spaceship
|
|
87
87
|
return build_beta_detail.ready_for_beta_submission?
|
88
88
|
end
|
89
89
|
|
90
|
+
def missing_export_compliance?
|
91
|
+
raise "No build_beta_detail included" unless build_beta_detail
|
92
|
+
return build_beta_detail.missing_export_compliance?
|
93
|
+
end
|
94
|
+
|
90
95
|
# This is here temporarily until the removal of Spaceship::TestFlight
|
91
96
|
def to_testflight_build
|
92
97
|
h = {
|
@@ -56,6 +56,10 @@ module Spaceship
|
|
56
56
|
def ready_for_beta_submission?
|
57
57
|
return external_build_state == ExternalState::READY_FOR_BETA_SUBMISSION
|
58
58
|
end
|
59
|
+
|
60
|
+
def missing_export_compliance?
|
61
|
+
return external_build_state == ExternalState::MISSING_EXPORT_COMPLIANCE
|
62
|
+
end
|
59
63
|
end
|
60
64
|
end
|
61
65
|
end
|
@@ -53,6 +53,19 @@ module Spaceship
|
|
53
53
|
return all(client: client, filter: { email: email }, includes: includes)
|
54
54
|
end
|
55
55
|
|
56
|
+
def self.create(client: nil, email: nil, first_name: nil, last_name: nil, roles: [], provisioning_allowed: nil, all_apps_visible: nil)
|
57
|
+
client ||= Spaceship::ConnectAPI
|
58
|
+
resp = client.post_user_invitation(
|
59
|
+
email: email,
|
60
|
+
first_name: first_name,
|
61
|
+
last_name: last_name,
|
62
|
+
roles: roles,
|
63
|
+
provisioning_allowed: provisioning_allowed,
|
64
|
+
all_apps_visible: all_apps_visible
|
65
|
+
)
|
66
|
+
return resp.to_models.first
|
67
|
+
end
|
68
|
+
|
56
69
|
def delete!(client: nil)
|
57
70
|
client ||= Spaceship::ConnectAPI
|
58
71
|
client.delete_user_invitation(user_invitation_id: id)
|
@@ -275,6 +275,19 @@ module Spaceship
|
|
275
275
|
test_flight_request_client.post("bulkBetaTesterAssignments", body)
|
276
276
|
end
|
277
277
|
|
278
|
+
def add_beta_tester_to_group(beta_group_id: nil, beta_tester_ids: nil)
|
279
|
+
beta_tester_ids || []
|
280
|
+
body = {
|
281
|
+
data: beta_tester_ids.map do |id|
|
282
|
+
{
|
283
|
+
type: "betaTesters",
|
284
|
+
id: id
|
285
|
+
}
|
286
|
+
end
|
287
|
+
}
|
288
|
+
test_flight_request_client.post("betaGroups/#{beta_group_id}/relationships/betaTesters", body)
|
289
|
+
end
|
290
|
+
|
278
291
|
def delete_beta_tester_from_apps(beta_tester_id: nil, app_ids: [])
|
279
292
|
body = {
|
280
293
|
data: app_ids.map do |id|
|
@@ -37,7 +37,7 @@ module Spaceship
|
|
37
37
|
raise "App Store Connect API key JSON is missing field(s): #{missing_keys.join(', ')}"
|
38
38
|
end
|
39
39
|
|
40
|
-
self.create(json)
|
40
|
+
self.create(**json)
|
41
41
|
end
|
42
42
|
|
43
43
|
def self.create(key_id: nil, issuer_id: nil, filepath: nil, key: nil, is_key_content_base64: false, duration: nil, in_house: nil, **)
|
@@ -60,14 +60,16 @@ module Spaceship
|
|
60
60
|
key_id: key_id,
|
61
61
|
issuer_id: issuer_id,
|
62
62
|
key: OpenSSL::PKey::EC.new(key),
|
63
|
+
key_raw: key,
|
63
64
|
duration: duration,
|
64
65
|
in_house: in_house
|
65
66
|
)
|
66
67
|
end
|
67
68
|
|
68
|
-
def initialize(key_id: nil, issuer_id: nil, key: nil, duration: nil, in_house: nil)
|
69
|
+
def initialize(key_id: nil, issuer_id: nil, key: nil, key_raw: nil, duration: nil, in_house: nil)
|
69
70
|
@key_id = key_id
|
70
71
|
@key = key
|
72
|
+
@key_raw = key_raw
|
71
73
|
@issuer_id = issuer_id
|
72
74
|
@duration = duration
|
73
75
|
@in_house = in_house
|
@@ -97,6 +99,10 @@ module Spaceship
|
|
97
99
|
def expired?
|
98
100
|
@expiration < Time.now
|
99
101
|
end
|
102
|
+
|
103
|
+
def write_key_to_file(path)
|
104
|
+
File.open(path, 'w') { |f| f.write(@key_raw) }
|
105
|
+
end
|
100
106
|
end
|
101
107
|
end
|
102
108
|
end
|
@@ -381,6 +381,11 @@ module Spaceship
|
|
381
381
|
tunes_request_client.post("appPreviewSets", body)
|
382
382
|
end
|
383
383
|
|
384
|
+
def delete_app_preview_set(app_preview_set_id: nil)
|
385
|
+
params = tunes_request_client.build_params(filter: nil, includes: nil, limit: nil, sort: nil)
|
386
|
+
tunes_request_client.delete("appPreviewSets/#{app_preview_set_id}", params)
|
387
|
+
end
|
388
|
+
|
384
389
|
def patch_app_preview_set_previews(app_preview_set_id: nil, app_preview_ids: nil)
|
385
390
|
app_preview_ids ||= []
|
386
391
|
|
@@ -515,6 +520,11 @@ module Spaceship
|
|
515
520
|
tunes_request_client.patch("appScreenshotSets/#{app_screenshot_set_id}/relationships/appScreenshots", body)
|
516
521
|
end
|
517
522
|
|
523
|
+
def delete_app_screenshot_set(app_screenshot_set_id: nil)
|
524
|
+
params = tunes_request_client.build_params(filter: nil, includes: nil, limit: nil, sort: nil)
|
525
|
+
tunes_request_client.delete("appScreenshotSets/#{app_screenshot_set_id}", params)
|
526
|
+
end
|
527
|
+
|
518
528
|
#
|
519
529
|
# appScreenshots
|
520
530
|
#
|
@@ -757,6 +767,11 @@ module Spaceship
|
|
757
767
|
tunes_request_client.get("appStoreVersions/#{app_store_version_id}/appStoreVersionLocalizations", params)
|
758
768
|
end
|
759
769
|
|
770
|
+
def get_app_store_version_localization(app_store_version_localization_id: nil, filter: {}, includes: nil, limit: nil, sort: nil)
|
771
|
+
params = tunes_request_client.build_params(filter: nil, includes: nil, limit: nil, sort: nil)
|
772
|
+
tunes_request_client.get("appStoreVersionLocalizations/#{app_store_version_localization_id}", params)
|
773
|
+
end
|
774
|
+
|
760
775
|
def post_app_store_version_localization(app_store_version_id: nil, attributes: {})
|
761
776
|
body = {
|
762
777
|
data: {
|
metadata
CHANGED
@@ -1,35 +1,37 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.180.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Roger Oba
|
8
|
+
- Jimmy Dee
|
8
9
|
- Stefan Natchev
|
9
|
-
- Aaron Brager
|
10
|
-
- Manu Wallner
|
11
|
-
- Jérôme Lacoste
|
12
|
-
- Olivier Halligon
|
13
|
-
- Helmut Januschka
|
14
10
|
- Jorge Revuelta H
|
15
|
-
-
|
16
|
-
- Jimmy Dee
|
17
|
-
- Felix Krause
|
18
|
-
- Andrew McBurney
|
11
|
+
- Josh Holtz
|
19
12
|
- Fumiya Nakamura
|
13
|
+
- Helmut Januschka
|
14
|
+
- Manu Wallner
|
15
|
+
- Jan Piotrowski
|
20
16
|
- Daniel Jankowski
|
21
|
-
- Maksym Grebenets
|
22
17
|
- Iulian Onofrei
|
23
|
-
-
|
18
|
+
- Olivier Halligon
|
24
19
|
- Max Ott
|
25
|
-
- Luka Mirosevic
|
26
|
-
- Joshua Liebowitz
|
27
20
|
- Kohki Miki
|
21
|
+
- Felix Krause
|
22
|
+
- Satoshi Namai
|
23
|
+
- Maksym Grebenets
|
24
|
+
- Joshua Liebowitz
|
25
|
+
- Danielle Tomlinson
|
26
|
+
- Jérôme Lacoste
|
27
|
+
- Luka Mirosevic
|
28
|
+
- Aaron Brager
|
29
|
+
- Andrew McBurney
|
28
30
|
- Matthew Ellis
|
29
31
|
autorequire:
|
30
32
|
bindir: bin
|
31
33
|
cert_chain: []
|
32
|
-
date: 2021-
|
34
|
+
date: 2021-04-08 00:00:00.000000000 Z
|
33
35
|
dependencies:
|
34
36
|
- !ruby/object:Gem::Dependency
|
35
37
|
name: slack-notifier
|
@@ -707,14 +709,14 @@ dependencies:
|
|
707
709
|
requirements:
|
708
710
|
- - "~>"
|
709
711
|
- !ruby/object:Gem::Version
|
710
|
-
version: 3.10
|
712
|
+
version: '3.10'
|
711
713
|
type: :development
|
712
714
|
prerelease: false
|
713
715
|
version_requirements: !ruby/object:Gem::Requirement
|
714
716
|
requirements:
|
715
717
|
- - "~>"
|
716
718
|
- !ruby/object:Gem::Version
|
717
|
-
version: 3.10
|
719
|
+
version: '3.10'
|
718
720
|
- !ruby/object:Gem::Dependency
|
719
721
|
name: rspec_junit_formatter
|
720
722
|
requirement: !ruby/object:Gem::Requirement
|
@@ -889,14 +891,14 @@ dependencies:
|
|
889
891
|
requirements:
|
890
892
|
- - "~>"
|
891
893
|
- !ruby/object:Gem::Version
|
892
|
-
version: 1.2
|
894
|
+
version: '1.2'
|
893
895
|
type: :development
|
894
896
|
prerelease: false
|
895
897
|
version_requirements: !ruby/object:Gem::Requirement
|
896
898
|
requirements:
|
897
899
|
- - "~>"
|
898
900
|
- !ruby/object:Gem::Version
|
899
|
-
version: 1.2
|
901
|
+
version: '1.2'
|
900
902
|
- !ruby/object:Gem::Dependency
|
901
903
|
name: sinatra
|
902
904
|
requirement: !ruby/object:Gem::Requirement
|
@@ -983,7 +985,6 @@ files:
|
|
983
985
|
- deliver/lib/deliver/loader.rb
|
984
986
|
- deliver/lib/deliver/module.rb
|
985
987
|
- deliver/lib/deliver/options.rb
|
986
|
-
- deliver/lib/deliver/queue_worker.rb
|
987
988
|
- deliver/lib/deliver/runner.rb
|
988
989
|
- deliver/lib/deliver/setup.rb
|
989
990
|
- deliver/lib/deliver/submit_for_review.rb
|
@@ -1010,8 +1011,10 @@ files:
|
|
1010
1011
|
- fastlane/lib/assets/s3_version_template.erb
|
1011
1012
|
- fastlane/lib/fastlane.rb
|
1012
1013
|
- fastlane/lib/fastlane/.erb_template_helper.rb.swp
|
1014
|
+
- fastlane/lib/fastlane/.fastlane_require.rb.swp
|
1013
1015
|
- fastlane/lib/fastlane/action.rb
|
1014
1016
|
- fastlane/lib/fastlane/action_collector.rb
|
1017
|
+
- fastlane/lib/fastlane/actions/.cocoapods.rb.swp
|
1015
1018
|
- fastlane/lib/fastlane/actions/.git_commit.rb.swp
|
1016
1019
|
- fastlane/lib/fastlane/actions/README.md
|
1017
1020
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
@@ -1152,6 +1155,7 @@ files:
|
|
1152
1155
|
- fastlane/lib/fastlane/actions/mailgun.rb
|
1153
1156
|
- fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb
|
1154
1157
|
- fastlane/lib/fastlane/actions/match.rb
|
1158
|
+
- fastlane/lib/fastlane/actions/match_nuke.rb
|
1155
1159
|
- fastlane/lib/fastlane/actions/min_fastlane_version.rb
|
1156
1160
|
- fastlane/lib/fastlane/actions/modify_services.rb
|
1157
1161
|
- fastlane/lib/fastlane/actions/nexus_upload.rb
|
@@ -1208,6 +1212,7 @@ files:
|
|
1208
1212
|
- fastlane/lib/fastlane/actions/slather.rb
|
1209
1213
|
- fastlane/lib/fastlane/actions/snapshot.rb
|
1210
1214
|
- fastlane/lib/fastlane/actions/sonar.rb
|
1215
|
+
- fastlane/lib/fastlane/actions/sourcedocs.rb
|
1211
1216
|
- fastlane/lib/fastlane/actions/spaceship_logs.rb
|
1212
1217
|
- fastlane/lib/fastlane/actions/spaceship_stats.rb
|
1213
1218
|
- fastlane/lib/fastlane/actions/splunkmint.rb
|
@@ -1423,6 +1428,7 @@ files:
|
|
1423
1428
|
- fastlane_core/lib/fastlane_core/print_table.rb
|
1424
1429
|
- fastlane_core/lib/fastlane_core/project.rb
|
1425
1430
|
- fastlane_core/lib/fastlane_core/provisioning_profile.rb
|
1431
|
+
- fastlane_core/lib/fastlane_core/queue_worker.rb
|
1426
1432
|
- fastlane_core/lib/fastlane_core/string_filters.rb
|
1427
1433
|
- fastlane_core/lib/fastlane_core/swag.rb
|
1428
1434
|
- fastlane_core/lib/fastlane_core/tag_version.rb
|
@@ -1469,6 +1475,7 @@ files:
|
|
1469
1475
|
- gym/lib/gym/commands_generator.rb
|
1470
1476
|
- gym/lib/gym/detect_values.rb
|
1471
1477
|
- gym/lib/gym/error_handler.rb
|
1478
|
+
- gym/lib/gym/generators/.package_command_generator_xcode7.rb.swp
|
1472
1479
|
- gym/lib/gym/generators/README.md
|
1473
1480
|
- gym/lib/gym/generators/build_command_generator.rb
|
1474
1481
|
- gym/lib/gym/generators/package_command_generator.rb
|
@@ -1514,7 +1521,6 @@ files:
|
|
1514
1521
|
- pem/lib/pem/options.rb
|
1515
1522
|
- pilot/README.md
|
1516
1523
|
- pilot/lib/pilot.rb
|
1517
|
-
- pilot/lib/pilot/.build_manager.rb.swp
|
1518
1524
|
- pilot/lib/pilot/build_manager.rb
|
1519
1525
|
- pilot/lib/pilot/commands_generator.rb
|
1520
1526
|
- pilot/lib/pilot/features.rb
|
Binary file
|