fastlane_pricing_fix 2.212.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/LICENSE +21 -0
- data/README.md +235 -0
- data/bin/bin-proxy +19 -0
- data/bin/fastlane +23 -0
- data/cert/README.md +17 -0
- data/cert/lib/cert/commands_generator.rb +61 -0
- data/cert/lib/cert/module.rb +16 -0
- data/cert/lib/cert/options.rb +133 -0
- data/cert/lib/cert/runner.rb +250 -0
- data/cert/lib/cert.rb +4 -0
- data/credentials_manager/README.md +64 -0
- data/credentials_manager/lib/credentials_manager/account_manager.rb +157 -0
- data/credentials_manager/lib/credentials_manager/appfile_config.rb +196 -0
- data/credentials_manager/lib/credentials_manager/cli.rb +69 -0
- data/credentials_manager/lib/credentials_manager.rb +7 -0
- data/deliver/README.md +17 -0
- data/deliver/lib/assets/DeliverfileDefault +3 -0
- data/deliver/lib/assets/DeliverfileDefault.swift +13 -0
- data/deliver/lib/assets/ScreenshotsHelp +30 -0
- data/deliver/lib/assets/summary.html.erb +299 -0
- data/deliver/lib/deliver/app_screenshot.rb +387 -0
- data/deliver/lib/deliver/app_screenshot_iterator.rb +95 -0
- data/deliver/lib/deliver/app_screenshot_validator.rb +108 -0
- data/deliver/lib/deliver/commands_generator.rb +191 -0
- data/deliver/lib/deliver/detect_values.rb +104 -0
- data/deliver/lib/deliver/download_screenshots.rb +75 -0
- data/deliver/lib/deliver/generate_summary.rb +13 -0
- data/deliver/lib/deliver/html_generator.rb +78 -0
- data/deliver/lib/deliver/languages.rb +7 -0
- data/deliver/lib/deliver/loader.rb +157 -0
- data/deliver/lib/deliver/module.rb +24 -0
- data/deliver/lib/deliver/options.rb +461 -0
- data/deliver/lib/deliver/runner.rb +310 -0
- data/deliver/lib/deliver/screenshot_comparable.rb +62 -0
- data/deliver/lib/deliver/setup.rb +203 -0
- data/deliver/lib/deliver/submit_for_review.rb +236 -0
- data/deliver/lib/deliver/sync_screenshots.rb +200 -0
- data/deliver/lib/deliver/upload_metadata.rb +699 -0
- data/deliver/lib/deliver/upload_price_tier.rb +42 -0
- data/deliver/lib/deliver/upload_screenshots.rb +271 -0
- data/deliver/lib/deliver.rb +15 -0
- data/fastlane/README.md +11 -0
- data/fastlane/lib/assets/ActionDetails.md.erb +106 -0
- data/fastlane/lib/assets/Actions.md.erb +43 -0
- data/fastlane/lib/assets/AppfileTemplate +6 -0
- data/fastlane/lib/assets/AppfileTemplate.swift +7 -0
- data/fastlane/lib/assets/AppfileTemplateAndroid +2 -0
- data/fastlane/lib/assets/DefaultFastfileTemplate +20 -0
- data/fastlane/lib/assets/DefaultFastfileTemplate.swift +13 -0
- data/fastlane/lib/assets/completions/completion.bash +26 -0
- data/fastlane/lib/assets/completions/completion.fish +39 -0
- data/fastlane/lib/assets/completions/completion.sh +12 -0
- data/fastlane/lib/assets/completions/completion.zsh +24 -0
- data/fastlane/lib/assets/custom_action_template.rb +82 -0
- data/fastlane/lib/assets/mailgun_html_template.erb +142 -0
- data/fastlane/lib/assets/report_template.xml.erb +15 -0
- data/fastlane/lib/assets/s3_html_template.erb +105 -0
- data/fastlane/lib/assets/s3_plist_template.erb +31 -0
- data/fastlane/lib/assets/s3_version_template.erb +4 -0
- data/fastlane/lib/fastlane/action.rb +198 -0
- data/fastlane/lib/fastlane/action_collector.rb +35 -0
- data/fastlane/lib/fastlane/actions/README.md +5 -0
- data/fastlane/lib/fastlane/actions/actions_helper.rb +185 -0
- data/fastlane/lib/fastlane/actions/adb.rb +75 -0
- data/fastlane/lib/fastlane/actions/adb_devices.rb +70 -0
- data/fastlane/lib/fastlane/actions/add_extra_platforms.rb +45 -0
- data/fastlane/lib/fastlane/actions/add_git_tag.rb +138 -0
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +255 -0
- data/fastlane/lib/fastlane/actions/app_store_connect_api_key.rb +148 -0
- data/fastlane/lib/fastlane/actions/appaloosa.rb +271 -0
- data/fastlane/lib/fastlane/actions/appetize.rb +193 -0
- data/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +135 -0
- data/fastlane/lib/fastlane/actions/appium.rb +181 -0
- data/fastlane/lib/fastlane/actions/appledoc.rb +226 -0
- data/fastlane/lib/fastlane/actions/appstore.rb +14 -0
- data/fastlane/lib/fastlane/actions/apteligent.rb +106 -0
- data/fastlane/lib/fastlane/actions/artifactory.rb +189 -0
- data/fastlane/lib/fastlane/actions/automatic_code_signing.rb +220 -0
- data/fastlane/lib/fastlane/actions/backup_file.rb +41 -0
- data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +135 -0
- data/fastlane/lib/fastlane/actions/badge.rb +151 -0
- data/fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb +113 -0
- data/fastlane/lib/fastlane/actions/build_android_app.rb +14 -0
- data/fastlane/lib/fastlane/actions/build_app.rb +171 -0
- data/fastlane/lib/fastlane/actions/build_ios_app.rb +47 -0
- data/fastlane/lib/fastlane/actions/build_mac_app.rb +46 -0
- data/fastlane/lib/fastlane/actions/bundle_install.rb +166 -0
- data/fastlane/lib/fastlane/actions/capture_android_screenshots.rb +63 -0
- data/fastlane/lib/fastlane/actions/capture_ios_screenshots.rb +61 -0
- data/fastlane/lib/fastlane/actions/capture_screenshots.rb +14 -0
- data/fastlane/lib/fastlane/actions/carthage.rb +238 -0
- data/fastlane/lib/fastlane/actions/cert.rb +14 -0
- data/fastlane/lib/fastlane/actions/changelog_from_git_commits.rb +188 -0
- data/fastlane/lib/fastlane/actions/chatwork.rb +95 -0
- data/fastlane/lib/fastlane/actions/check_app_store_metadata.rb +62 -0
- data/fastlane/lib/fastlane/actions/clean_build_artifacts.rb +71 -0
- data/fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb +75 -0
- data/fastlane/lib/fastlane/actions/clear_derived_data.rb +70 -0
- data/fastlane/lib/fastlane/actions/clipboard.rb +49 -0
- data/fastlane/lib/fastlane/actions/cloc.rb +85 -0
- data/fastlane/lib/fastlane/actions/cocoapods.rb +178 -0
- data/fastlane/lib/fastlane/actions/commit_github_file.rb +194 -0
- data/fastlane/lib/fastlane/actions/commit_version_bump.rb +300 -0
- data/fastlane/lib/fastlane/actions/copy_artifacts.rb +113 -0
- data/fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb +168 -0
- data/fastlane/lib/fastlane/actions/create_app_online.rb +75 -0
- data/fastlane/lib/fastlane/actions/create_keychain.rb +179 -0
- data/fastlane/lib/fastlane/actions/create_pull_request.rb +271 -0
- data/fastlane/lib/fastlane/actions/create_xcframework.rb +203 -0
- data/fastlane/lib/fastlane/actions/danger.rb +146 -0
- data/fastlane/lib/fastlane/actions/debug.rb +32 -0
- data/fastlane/lib/fastlane/actions/default_platform.rb +47 -0
- data/fastlane/lib/fastlane/actions/delete_keychain.rb +68 -0
- data/fastlane/lib/fastlane/actions/deliver.rb +14 -0
- data/fastlane/lib/fastlane/actions/deploygate.rb +209 -0
- data/fastlane/lib/fastlane/actions/device_grid/README.md +157 -0
- data/fastlane/lib/fastlane/actions/docs/build_app.md +245 -0
- data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +349 -0
- data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +375 -0
- data/fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md +103 -0
- data/fastlane/lib/fastlane/actions/docs/create_app_online.md +386 -0
- data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +366 -0
- data/fastlane/lib/fastlane/actions/docs/get_certificates.md +86 -0
- data/fastlane/lib/fastlane/actions/docs/get_provisioning_profile.md +223 -0
- data/fastlane/lib/fastlane/actions/docs/get_push_certificate.md +134 -0
- data/fastlane/lib/fastlane/actions/docs/run_tests.md +151 -0
- data/fastlane/lib/fastlane/actions/docs/sync_code_signing.md +579 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +748 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +204 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +260 -0
- data/fastlane/lib/fastlane/actions/dotgpg_environment.rb +57 -0
- data/fastlane/lib/fastlane/actions/download.rb +76 -0
- data/fastlane/lib/fastlane/actions/download_app_privacy_details_from_app_store.rb +142 -0
- data/fastlane/lib/fastlane/actions/download_dsyms.rb +373 -0
- data/fastlane/lib/fastlane/actions/download_from_play_store.rb +61 -0
- data/fastlane/lib/fastlane/actions/dsym_zip.rb +93 -0
- data/fastlane/lib/fastlane/actions/echo.rb +14 -0
- data/fastlane/lib/fastlane/actions/ensure_bundle_exec.rb +59 -0
- data/fastlane/lib/fastlane/actions/ensure_env_vars.rb +54 -0
- data/fastlane/lib/fastlane/actions/ensure_git_branch.rb +68 -0
- data/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb +102 -0
- data/fastlane/lib/fastlane/actions/ensure_no_debug_code.rb +133 -0
- data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +124 -0
- data/fastlane/lib/fastlane/actions/environment_variable.rb +69 -0
- data/fastlane/lib/fastlane/actions/erb.rb +93 -0
- data/fastlane/lib/fastlane/actions/fastlane_version.rb +15 -0
- data/fastlane/lib/fastlane/actions/flock.rb +82 -0
- data/fastlane/lib/fastlane/actions/frame_screenshots.rb +64 -0
- data/fastlane/lib/fastlane/actions/frameit.rb +14 -0
- data/fastlane/lib/fastlane/actions/gcovr.rb +163 -0
- data/fastlane/lib/fastlane/actions/get_build_number.rb +106 -0
- data/fastlane/lib/fastlane/actions/get_build_number_repository.rb +120 -0
- data/fastlane/lib/fastlane/actions/get_certificates.rb +81 -0
- data/fastlane/lib/fastlane/actions/get_github_release.rb +176 -0
- data/fastlane/lib/fastlane/actions/get_info_plist_value.rb +78 -0
- data/fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb +81 -0
- data/fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb +117 -0
- data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +109 -0
- data/fastlane/lib/fastlane/actions/get_push_certificate.rb +87 -0
- data/fastlane/lib/fastlane/actions/get_version_number.rb +212 -0
- data/fastlane/lib/fastlane/actions/git_add.rb +88 -0
- data/fastlane/lib/fastlane/actions/git_branch.rb +55 -0
- data/fastlane/lib/fastlane/actions/git_commit.rb +80 -0
- data/fastlane/lib/fastlane/actions/git_pull.rb +58 -0
- data/fastlane/lib/fastlane/actions/git_remote_branch.rb +57 -0
- data/fastlane/lib/fastlane/actions/git_submodule_update.rb +60 -0
- data/fastlane/lib/fastlane/actions/git_tag_exists.rb +78 -0
- data/fastlane/lib/fastlane/actions/github_api.rb +271 -0
- data/fastlane/lib/fastlane/actions/google_play_track_release_names.rb +74 -0
- data/fastlane/lib/fastlane/actions/google_play_track_version_codes.rb +77 -0
- data/fastlane/lib/fastlane/actions/gradle.rb +334 -0
- data/fastlane/lib/fastlane/actions/gym.rb +10 -0
- data/fastlane/lib/fastlane/actions/hg_add_tag.rb +48 -0
- data/fastlane/lib/fastlane/actions/hg_commit_version_bump.rb +183 -0
- data/fastlane/lib/fastlane/actions/hg_ensure_clean_status.rb +53 -0
- data/fastlane/lib/fastlane/actions/hg_push.rb +64 -0
- data/fastlane/lib/fastlane/actions/hipchat.rb +200 -0
- data/fastlane/lib/fastlane/actions/hockey.rb +399 -0
- data/fastlane/lib/fastlane/actions/ifttt.rb +93 -0
- data/fastlane/lib/fastlane/actions/import.rb +49 -0
- data/fastlane/lib/fastlane/actions/import_certificate.rb +77 -0
- data/fastlane/lib/fastlane/actions/import_from_git.rb +81 -0
- data/fastlane/lib/fastlane/actions/increment_build_number.rb +123 -0
- data/fastlane/lib/fastlane/actions/increment_version_number.rb +180 -0
- data/fastlane/lib/fastlane/actions/install_on_device.rb +92 -0
- data/fastlane/lib/fastlane/actions/install_provisioning_profile.rb +62 -0
- data/fastlane/lib/fastlane/actions/install_xcode_plugin.rb +91 -0
- data/fastlane/lib/fastlane/actions/installr.rb +129 -0
- data/fastlane/lib/fastlane/actions/ipa.rb +246 -0
- data/fastlane/lib/fastlane/actions/is_ci.rb +51 -0
- data/fastlane/lib/fastlane/actions/jazzy.rb +59 -0
- data/fastlane/lib/fastlane/actions/jira.rb +162 -0
- data/fastlane/lib/fastlane/actions/lane_context.rb +60 -0
- data/fastlane/lib/fastlane/actions/last_git_commit.rb +58 -0
- data/fastlane/lib/fastlane/actions/last_git_tag.rb +60 -0
- data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +154 -0
- data/fastlane/lib/fastlane/actions/lcov.rb +98 -0
- data/fastlane/lib/fastlane/actions/mailgun.rb +191 -0
- data/fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb +81 -0
- data/fastlane/lib/fastlane/actions/match.rb +14 -0
- data/fastlane/lib/fastlane/actions/match_nuke.rb +59 -0
- data/fastlane/lib/fastlane/actions/min_fastlane_version.rb +57 -0
- data/fastlane/lib/fastlane/actions/modify_services.rb +208 -0
- data/fastlane/lib/fastlane/actions/nexus_upload.rb +231 -0
- data/fastlane/lib/fastlane/actions/notarize.rb +340 -0
- data/fastlane/lib/fastlane/actions/notification.rb +75 -0
- data/fastlane/lib/fastlane/actions/notify.rb +40 -0
- data/fastlane/lib/fastlane/actions/number_of_commits.rb +75 -0
- data/fastlane/lib/fastlane/actions/oclint.rb +270 -0
- data/fastlane/lib/fastlane/actions/onesignal.rb +196 -0
- data/fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb +33 -0
- data/fastlane/lib/fastlane/actions/opt_out_usage.rb +40 -0
- data/fastlane/lib/fastlane/actions/pem.rb +14 -0
- data/fastlane/lib/fastlane/actions/pilot.rb +14 -0
- data/fastlane/lib/fastlane/actions/pod_lib_lint.rb +189 -0
- data/fastlane/lib/fastlane/actions/pod_push.rb +198 -0
- data/fastlane/lib/fastlane/actions/podio_item.rb +210 -0
- data/fastlane/lib/fastlane/actions/precheck.rb +14 -0
- data/fastlane/lib/fastlane/actions/println.rb +14 -0
- data/fastlane/lib/fastlane/actions/produce.rb +14 -0
- data/fastlane/lib/fastlane/actions/prompt.rb +118 -0
- data/fastlane/lib/fastlane/actions/push_git_tags.rb +76 -0
- data/fastlane/lib/fastlane/actions/push_to_git_remote.rb +138 -0
- data/fastlane/lib/fastlane/actions/puts.rb +67 -0
- data/fastlane/lib/fastlane/actions/read_podspec.rb +90 -0
- data/fastlane/lib/fastlane/actions/recreate_schemes.rb +46 -0
- data/fastlane/lib/fastlane/actions/register_device.rb +148 -0
- data/fastlane/lib/fastlane/actions/register_devices.rb +211 -0
- data/fastlane/lib/fastlane/actions/reset_git_repo.rb +118 -0
- data/fastlane/lib/fastlane/actions/reset_simulator_contents.rb +90 -0
- data/fastlane/lib/fastlane/actions/resign.rb +125 -0
- data/fastlane/lib/fastlane/actions/restore_file.rb +44 -0
- data/fastlane/lib/fastlane/actions/rocket.rb +83 -0
- data/fastlane/lib/fastlane/actions/rsync.rb +71 -0
- data/fastlane/lib/fastlane/actions/ruby_version.rb +56 -0
- data/fastlane/lib/fastlane/actions/run_tests.rb +124 -0
- data/fastlane/lib/fastlane/actions/s3.rb +174 -0
- data/fastlane/lib/fastlane/actions/say.rb +55 -0
- data/fastlane/lib/fastlane/actions/scan.rb +14 -0
- data/fastlane/lib/fastlane/actions/scp.rb +108 -0
- data/fastlane/lib/fastlane/actions/screengrab.rb +14 -0
- data/fastlane/lib/fastlane/actions/set_build_number_repository.rb +76 -0
- data/fastlane/lib/fastlane/actions/set_changelog.rb +201 -0
- data/fastlane/lib/fastlane/actions/set_github_release.rb +287 -0
- data/fastlane/lib/fastlane/actions/set_info_plist_value.rb +92 -0
- data/fastlane/lib/fastlane/actions/set_pod_key.rb +77 -0
- data/fastlane/lib/fastlane/actions/setup_ci.rb +140 -0
- data/fastlane/lib/fastlane/actions/setup_circle_ci.rb +58 -0
- data/fastlane/lib/fastlane/actions/setup_jenkins.rb +197 -0
- data/fastlane/lib/fastlane/actions/setup_travis.rb +57 -0
- data/fastlane/lib/fastlane/actions/sh.rb +69 -0
- data/fastlane/lib/fastlane/actions/sigh.rb +14 -0
- data/fastlane/lib/fastlane/actions/skip_docs.rb +52 -0
- data/fastlane/lib/fastlane/actions/slack.rb +307 -0
- data/fastlane/lib/fastlane/actions/slather.rb +319 -0
- data/fastlane/lib/fastlane/actions/snapshot.rb +14 -0
- data/fastlane/lib/fastlane/actions/sonar.rb +170 -0
- data/fastlane/lib/fastlane/actions/sourcedocs.rb +128 -0
- data/fastlane/lib/fastlane/actions/spaceship_logs.rb +135 -0
- data/fastlane/lib/fastlane/actions/spaceship_stats.rb +73 -0
- data/fastlane/lib/fastlane/actions/splunkmint.rb +156 -0
- data/fastlane/lib/fastlane/actions/spm.rb +144 -0
- data/fastlane/lib/fastlane/actions/ssh.rb +157 -0
- data/fastlane/lib/fastlane/actions/supply.rb +14 -0
- data/fastlane/lib/fastlane/actions/swiftlint.rb +242 -0
- data/fastlane/lib/fastlane/actions/sync_code_signing.rb +114 -0
- data/fastlane/lib/fastlane/actions/team_id.rb +42 -0
- data/fastlane/lib/fastlane/actions/team_name.rb +42 -0
- data/fastlane/lib/fastlane/actions/testfairy.rb +284 -0
- data/fastlane/lib/fastlane/actions/testflight.rb +14 -0
- data/fastlane/lib/fastlane/actions/trainer.rb +49 -0
- data/fastlane/lib/fastlane/actions/tryouts.rb +148 -0
- data/fastlane/lib/fastlane/actions/twitter.rb +84 -0
- data/fastlane/lib/fastlane/actions/typetalk.rb +93 -0
- data/fastlane/lib/fastlane/actions/unlock_keychain.rb +132 -0
- data/fastlane/lib/fastlane/actions/update_app_group_identifiers.rb +88 -0
- data/fastlane/lib/fastlane/actions/update_app_identifier.rb +124 -0
- data/fastlane/lib/fastlane/actions/update_code_signing_settings.rb +223 -0
- data/fastlane/lib/fastlane/actions/update_fastlane.rb +158 -0
- data/fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb +96 -0
- data/fastlane/lib/fastlane/actions/update_info_plist.rb +143 -0
- data/fastlane/lib/fastlane/actions/update_keychain_access_groups.rb +91 -0
- data/fastlane/lib/fastlane/actions/update_plist.rb +115 -0
- data/fastlane/lib/fastlane/actions/update_project_code_signing.rb +76 -0
- data/fastlane/lib/fastlane/actions/update_project_provisioning.rb +181 -0
- data/fastlane/lib/fastlane/actions/update_project_team.rb +95 -0
- data/fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb +90 -0
- data/fastlane/lib/fastlane/actions/update_url_schemes.rb +112 -0
- data/fastlane/lib/fastlane/actions/upload_app_privacy_details_to_app_store.rb +290 -0
- data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +232 -0
- data/fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb +158 -0
- data/fastlane/lib/fastlane/actions/upload_to_app_store.rb +71 -0
- data/fastlane/lib/fastlane/actions/upload_to_play_store.rb +80 -0
- data/fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb +78 -0
- data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +126 -0
- data/fastlane/lib/fastlane/actions/validate_play_store_json_key.rb +100 -0
- data/fastlane/lib/fastlane/actions/verify_build.rb +199 -0
- data/fastlane/lib/fastlane/actions/verify_pod_keys.rb +67 -0
- data/fastlane/lib/fastlane/actions/verify_xcode.rb +159 -0
- data/fastlane/lib/fastlane/actions/version_bump_podspec.rb +105 -0
- data/fastlane/lib/fastlane/actions/version_get_podspec.rb +70 -0
- data/fastlane/lib/fastlane/actions/xcode_install.rb +112 -0
- data/fastlane/lib/fastlane/actions/xcode_select.rb +68 -0
- data/fastlane/lib/fastlane/actions/xcode_server_get_assets.rb +312 -0
- data/fastlane/lib/fastlane/actions/xcodebuild.rb +647 -0
- data/fastlane/lib/fastlane/actions/xcodes.rb +152 -0
- data/fastlane/lib/fastlane/actions/xcov.rb +71 -0
- data/fastlane/lib/fastlane/actions/xctool.rb +55 -0
- data/fastlane/lib/fastlane/actions/xcversion.rb +65 -0
- data/fastlane/lib/fastlane/actions/zip.rb +185 -0
- data/fastlane/lib/fastlane/auto_complete.rb +82 -0
- data/fastlane/lib/fastlane/boolean.rb +5 -0
- data/fastlane/lib/fastlane/cli_tools_distributor.rb +215 -0
- data/fastlane/lib/fastlane/command_line_handler.rb +49 -0
- data/fastlane/lib/fastlane/commands_generator.rb +371 -0
- data/fastlane/lib/fastlane/configuration_helper.rb +26 -0
- data/fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb +14 -0
- data/fastlane/lib/fastlane/documentation/actions_list.rb +214 -0
- data/fastlane/lib/fastlane/documentation/docs_generator.rb +94 -0
- data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +234 -0
- data/fastlane/lib/fastlane/environment_printer.rb +304 -0
- data/fastlane/lib/fastlane/erb_template_helper.rb +36 -0
- data/fastlane/lib/fastlane/fast_file.rb +464 -0
- data/fastlane/lib/fastlane/fastlane_require.rb +81 -0
- data/fastlane/lib/fastlane/features.rb +10 -0
- data/fastlane/lib/fastlane/helper/README.md +29 -0
- data/fastlane/lib/fastlane/helper/adb_helper.rb +66 -0
- data/fastlane/lib/fastlane/helper/dotenv_helper.rb +50 -0
- data/fastlane/lib/fastlane/helper/gem_helper.rb +26 -0
- data/fastlane/lib/fastlane/helper/git_helper.rb +166 -0
- data/fastlane/lib/fastlane/helper/gradle_helper.rb +62 -0
- data/fastlane/lib/fastlane/helper/lane_helper.rb +13 -0
- data/fastlane/lib/fastlane/helper/podspec_helper.rb +75 -0
- data/fastlane/lib/fastlane/helper/s3_client_helper.rb +78 -0
- data/fastlane/lib/fastlane/helper/sh_helper.rb +134 -0
- data/fastlane/lib/fastlane/helper/xcodebuild_formatter_helper.rb +9 -0
- data/fastlane/lib/fastlane/helper/xcodeproj_helper.rb +12 -0
- data/fastlane/lib/fastlane/helper/xcodes_helper.rb +28 -0
- data/fastlane/lib/fastlane/helper/xcversion_helper.rb +16 -0
- data/fastlane/lib/fastlane/junit_generator.rb +27 -0
- data/fastlane/lib/fastlane/lane.rb +97 -0
- data/fastlane/lib/fastlane/lane_list.rb +137 -0
- data/fastlane/lib/fastlane/lane_manager.rb +131 -0
- data/fastlane/lib/fastlane/lane_manager_base.rb +92 -0
- data/fastlane/lib/fastlane/markdown_table_formatter.rb +62 -0
- data/fastlane/lib/fastlane/new_action.rb +47 -0
- data/fastlane/lib/fastlane/notification/slack.rb +56 -0
- data/fastlane/lib/fastlane/one_off.rb +45 -0
- data/fastlane/lib/fastlane/other_action.rb +29 -0
- data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +54 -0
- data/fastlane/lib/fastlane/plugins/plugin_generator.rb +86 -0
- data/fastlane/lib/fastlane/plugins/plugin_generator_ui.rb +19 -0
- data/fastlane/lib/fastlane/plugins/plugin_info.rb +49 -0
- data/fastlane/lib/fastlane/plugins/plugin_info_collector.rb +158 -0
- data/fastlane/lib/fastlane/plugins/plugin_manager.rb +398 -0
- data/fastlane/lib/fastlane/plugins/plugin_search.rb +46 -0
- data/fastlane/lib/fastlane/plugins/plugin_update_manager.rb +70 -0
- data/fastlane/lib/fastlane/plugins/plugins.rb +12 -0
- data/fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb +36 -0
- data/fastlane/lib/fastlane/plugins/template/.circleci/config.yml +43 -0
- data/fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml +29 -0
- data/fastlane/lib/fastlane/plugins/template/.gitignore +12 -0
- data/fastlane/lib/fastlane/plugins/template/.rspec +5 -0
- data/fastlane/lib/fastlane/plugins/template/.rubocop.yml +188 -0
- data/fastlane/lib/fastlane/plugins/template/.travis.yml +4 -0
- data/fastlane/lib/fastlane/plugins/template/Gemfile +6 -0
- data/fastlane/lib/fastlane/plugins/template/LICENSE.erb +21 -0
- data/fastlane/lib/fastlane/plugins/template/README.md.erb +52 -0
- data/fastlane/lib/fastlane/plugins/template/Rakefile +9 -0
- data/fastlane/lib/fastlane/plugins/template/fastlane/Fastfile.erb +3 -0
- data/fastlane/lib/fastlane/plugins/template/fastlane/Pluginfile.erb +1 -0
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb +47 -0
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/helper/%plugin_name%_helper.rb.erb +16 -0
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/version.rb.erb +5 -0
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb +16 -0
- data/fastlane/lib/fastlane/plugins/template/spec/%plugin_name%_action_spec.rb.erb +9 -0
- data/fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb +15 -0
- data/fastlane/lib/fastlane/runner.rb +378 -0
- data/fastlane/lib/fastlane/server/action_command.rb +61 -0
- data/fastlane/lib/fastlane/server/action_command_return.rb +14 -0
- data/fastlane/lib/fastlane/server/command_executor.rb +7 -0
- data/fastlane/lib/fastlane/server/command_parser.rb +44 -0
- data/fastlane/lib/fastlane/server/control_command.rb +23 -0
- data/fastlane/lib/fastlane/server/json_return_value_processor.rb +72 -0
- data/fastlane/lib/fastlane/server/socket_server.rb +238 -0
- data/fastlane/lib/fastlane/server/socket_server_action_command_executor.rb +101 -0
- data/fastlane/lib/fastlane/setup/setup.rb +368 -0
- data/fastlane/lib/fastlane/setup/setup_android.rb +97 -0
- data/fastlane/lib/fastlane/setup/setup_ios.rb +504 -0
- data/fastlane/lib/fastlane/shells.rb +6 -0
- data/fastlane/lib/fastlane/supported_platforms.rb +28 -0
- data/fastlane/lib/fastlane/swift_fastlane_api_generator.rb +480 -0
- data/fastlane/lib/fastlane/swift_fastlane_function.rb +447 -0
- data/fastlane/lib/fastlane/swift_lane_manager.rb +304 -0
- data/fastlane/lib/fastlane/swift_runner_upgrader.rb +265 -0
- data/fastlane/lib/fastlane/tools.rb +50 -0
- data/fastlane/lib/fastlane/version.rb +6 -0
- data/fastlane/lib/fastlane.rb +53 -0
- data/fastlane/swift/Actions.swift +16 -0
- data/fastlane/swift/Appfile.swift +15 -0
- data/fastlane/swift/ArgumentProcessor.swift +89 -0
- data/fastlane/swift/Atomic.swift +150 -0
- data/fastlane/swift/ControlCommand.swift +74 -0
- data/fastlane/swift/Deliverfile.swift +20 -0
- data/fastlane/swift/DeliverfileProtocol.swift +267 -0
- data/fastlane/swift/Fastfile.swift +16 -0
- data/fastlane/swift/Fastlane.swift +13576 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +448 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme +97 -0
- data/fastlane/swift/FastlaneSwiftRunner/README.txt +10 -0
- data/fastlane/swift/Gymfile.swift +20 -0
- data/fastlane/swift/GymfileProtocol.swift +211 -0
- data/fastlane/swift/LaneFileProtocol.swift +155 -0
- data/fastlane/swift/MainProcess.swift +79 -0
- data/fastlane/swift/Matchfile.swift +20 -0
- data/fastlane/swift/MatchfileProtocol.swift +211 -0
- data/fastlane/swift/OptionalConfigValue.swift +101 -0
- data/fastlane/swift/Plugins.swift +16 -0
- data/fastlane/swift/Precheckfile.swift +20 -0
- data/fastlane/swift/PrecheckfileProtocol.swift +55 -0
- data/fastlane/swift/RubyCommand.swift +157 -0
- data/fastlane/swift/RubyCommandable.swift +43 -0
- data/fastlane/swift/Runner.swift +279 -0
- data/fastlane/swift/RunnerArgument.swift +20 -0
- data/fastlane/swift/Scanfile.swift +20 -0
- data/fastlane/swift/ScanfileProtocol.swift +319 -0
- data/fastlane/swift/Screengrabfile.swift +20 -0
- data/fastlane/swift/ScreengrabfileProtocol.swift +99 -0
- data/fastlane/swift/Snapshotfile.swift +20 -0
- data/fastlane/swift/SnapshotfileProtocol.swift +207 -0
- data/fastlane/swift/SocketClient.swift +332 -0
- data/fastlane/swift/SocketClientDelegateProtocol.swift +21 -0
- data/fastlane/swift/SocketResponse.swift +84 -0
- data/fastlane/swift/formatting/Brewfile +1 -0
- data/fastlane/swift/formatting/Brewfile.lock.json +86 -0
- data/fastlane/swift/formatting/Rakefile +18 -0
- data/fastlane/swift/main.swift +47 -0
- data/fastlane/swift/upgrade_manifest.json +1 -0
- data/fastlane_core/README.md +80 -0
- data/fastlane_core/lib/assets/XMLTemplate.xml.erb +12 -0
- data/fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb +34 -0
- data/fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb +38 -0
- data/fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb +23 -0
- data/fastlane_core/lib/fastlane_core/analytics/analytics_ingester_client.rb +54 -0
- data/fastlane_core/lib/fastlane_core/analytics/analytics_session.rb +70 -0
- data/fastlane_core/lib/fastlane_core/analytics/app_identifier_guesser.rb +64 -0
- data/fastlane_core/lib/fastlane_core/android_package_name_guesser.rb +79 -0
- data/fastlane_core/lib/fastlane_core/build_watcher.rb +192 -0
- data/fastlane_core/lib/fastlane_core/cert_checker.rb +211 -0
- data/fastlane_core/lib/fastlane_core/clipboard.rb +20 -0
- data/fastlane_core/lib/fastlane_core/command_executor.rb +94 -0
- data/fastlane_core/lib/fastlane_core/configuration/commander_generator.rb +108 -0
- data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +359 -0
- data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +338 -0
- data/fastlane_core/lib/fastlane_core/configuration/configuration_file.rb +182 -0
- data/fastlane_core/lib/fastlane_core/core_ext/cfpropertylist.rb +23 -0
- data/fastlane_core/lib/fastlane_core/core_ext/shellwords.rb +63 -0
- data/fastlane_core/lib/fastlane_core/core_ext/string.rb +17 -0
- data/fastlane_core/lib/fastlane_core/device_manager.rb +378 -0
- data/fastlane_core/lib/fastlane_core/env.rb +9 -0
- data/fastlane_core/lib/fastlane_core/fastlane_folder.rb +72 -0
- data/fastlane_core/lib/fastlane_core/fastlane_pty.rb +57 -0
- data/fastlane_core/lib/fastlane_core/feature/feature.rb +51 -0
- data/fastlane_core/lib/fastlane_core/features.rb +4 -0
- data/fastlane_core/lib/fastlane_core/globals.rb +27 -0
- data/fastlane_core/lib/fastlane_core/helper.rb +501 -0
- data/fastlane_core/lib/fastlane_core/ios_app_identifier_guesser.rb +112 -0
- data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +93 -0
- data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +53 -0
- data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +983 -0
- data/fastlane_core/lib/fastlane_core/keychain_importer.rb +128 -0
- data/fastlane_core/lib/fastlane_core/languages.rb +16 -0
- data/fastlane_core/lib/fastlane_core/module.rb +31 -0
- data/fastlane_core/lib/fastlane_core/pkg_file_analyser.rb +56 -0
- data/fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb +49 -0
- data/fastlane_core/lib/fastlane_core/print_table.rb +133 -0
- data/fastlane_core/lib/fastlane_core/project.rb +546 -0
- data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +126 -0
- data/fastlane_core/lib/fastlane_core/queue_worker.rb +49 -0
- data/fastlane_core/lib/fastlane_core/string_filters.rb +51 -0
- data/fastlane_core/lib/fastlane_core/swag.rb +85 -0
- data/fastlane_core/lib/fastlane_core/tag_version.rb +31 -0
- data/fastlane_core/lib/fastlane_core/test_parser.rb +107 -0
- data/fastlane_core/lib/fastlane_core/ui/disable_colors.rb +26 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb +19 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_crash.rb +11 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb +25 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_exception.rb +19 -0
- data/fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb +11 -0
- data/fastlane_core/lib/fastlane_core/ui/errors.rb +1 -0
- data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +342 -0
- data/fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb +62 -0
- data/fastlane_core/lib/fastlane_core/ui/help.erb +35 -0
- data/fastlane_core/lib/fastlane_core/ui/help_formatter.rb +16 -0
- data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +175 -0
- data/fastlane_core/lib/fastlane_core/ui/interface.rb +205 -0
- data/fastlane_core/lib/fastlane_core/ui/ui.rb +26 -0
- data/fastlane_core/lib/fastlane_core/update_checker/changelog.rb +37 -0
- data/fastlane_core/lib/fastlane_core/update_checker/update_checker.rb +109 -0
- data/fastlane_core/lib/fastlane_core.rb +48 -0
- data/frameit/README.md +17 -0
- data/frameit/lib/assets/empty.png +0 -0
- data/frameit/lib/frameit/commands_generator.rb +141 -0
- data/frameit/lib/frameit/config_parser.rb +136 -0
- data/frameit/lib/frameit/dependency_checker.rb +22 -0
- data/frameit/lib/frameit/device.rb +90 -0
- data/frameit/lib/frameit/device_types.rb +159 -0
- data/frameit/lib/frameit/editor.rb +558 -0
- data/frameit/lib/frameit/frame_downloader.rb +86 -0
- data/frameit/lib/frameit/mac_editor.rb +35 -0
- data/frameit/lib/frameit/module.rb +42 -0
- data/frameit/lib/frameit/offsets.rb +28 -0
- data/frameit/lib/frameit/options.rb +112 -0
- data/frameit/lib/frameit/runner.rb +97 -0
- data/frameit/lib/frameit/screenshot.rb +134 -0
- data/frameit/lib/frameit/strings_parser.rb +46 -0
- data/frameit/lib/frameit/template_finder.rb +45 -0
- data/frameit/lib/frameit/trim_box.rb +41 -0
- data/frameit/lib/frameit.rb +13 -0
- data/gym/README.md +17 -0
- data/gym/lib/assets/GymfileTemplate +13 -0
- data/gym/lib/assets/GymfileTemplate.swift +13 -0
- data/gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh +61 -0
- data/gym/lib/gym/code_signing_mapping.rb +210 -0
- data/gym/lib/gym/commands_generator.rb +79 -0
- data/gym/lib/gym/detect_values.rb +206 -0
- data/gym/lib/gym/error_handler.rb +314 -0
- data/gym/lib/gym/generators/README.md +1 -0
- data/gym/lib/gym/generators/build_command_generator.rb +197 -0
- data/gym/lib/gym/generators/package_command_generator.rb +72 -0
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +238 -0
- data/gym/lib/gym/manager.rb +22 -0
- data/gym/lib/gym/module.rb +74 -0
- data/gym/lib/gym/options.rb +327 -0
- data/gym/lib/gym/runner.rb +376 -0
- data/gym/lib/gym/xcode.rb +27 -0
- data/gym/lib/gym/xcodebuild_fixes/README.md +9 -0
- data/gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb +35 -0
- data/gym/lib/gym.rb +9 -0
- data/match/README.md +17 -0
- data/match/lib/assets/MatchfileTemplate +11 -0
- data/match/lib/assets/MatchfileTemplate.swift +9 -0
- data/match/lib/assets/READMETemplate.md +59 -0
- data/match/lib/match/change_password.rb +55 -0
- data/match/lib/match/commands_generator.rb +192 -0
- data/match/lib/match/encryption/interface.rb +17 -0
- data/match/lib/match/encryption/openssl.rb +163 -0
- data/match/lib/match/encryption.rb +52 -0
- data/match/lib/match/generator.rb +124 -0
- data/match/lib/match/importer.rb +165 -0
- data/match/lib/match/migrate.rb +109 -0
- data/match/lib/match/module.rb +85 -0
- data/match/lib/match/nuke.rb +421 -0
- data/match/lib/match/options.rb +347 -0
- data/match/lib/match/runner.rb +472 -0
- data/match/lib/match/setup.rb +40 -0
- data/match/lib/match/spaceship_ensure.rb +103 -0
- data/match/lib/match/storage/git_storage.rb +254 -0
- data/match/lib/match/storage/gitlab/client.rb +102 -0
- data/match/lib/match/storage/gitlab/secure_file.rb +65 -0
- data/match/lib/match/storage/gitlab_secure_files.rb +182 -0
- data/match/lib/match/storage/google_cloud_storage.rb +383 -0
- data/match/lib/match/storage/interface.rb +119 -0
- data/match/lib/match/storage/s3_storage.rb +205 -0
- data/match/lib/match/storage.rb +50 -0
- data/match/lib/match/table_printer.rb +52 -0
- data/match/lib/match/utils.rb +88 -0
- data/match/lib/match.rb +14 -0
- data/pem/README.md +17 -0
- data/pem/lib/pem/commands_generator.rb +48 -0
- data/pem/lib/pem/manager.rb +136 -0
- data/pem/lib/pem/module.rb +19 -0
- data/pem/lib/pem/options.rb +112 -0
- data/pem/lib/pem.rb +4 -0
- data/pilot/README.md +17 -0
- data/pilot/lib/pilot/build_manager.rb +602 -0
- data/pilot/lib/pilot/commands_generator.rb +175 -0
- data/pilot/lib/pilot/manager.rb +95 -0
- data/pilot/lib/pilot/module.rb +11 -0
- data/pilot/lib/pilot/options.rb +336 -0
- data/pilot/lib/pilot/tester_exporter.rb +57 -0
- data/pilot/lib/pilot/tester_importer.rb +53 -0
- data/pilot/lib/pilot/tester_manager.rb +167 -0
- data/pilot/lib/pilot.rb +8 -0
- data/precheck/README.md +17 -0
- data/precheck/lib/assets/PrecheckfileTemplate +27 -0
- data/precheck/lib/assets/PrecheckfileTemplate.swift +19 -0
- data/precheck/lib/precheck/commands_generator.rb +75 -0
- data/precheck/lib/precheck/item_to_check.rb +58 -0
- data/precheck/lib/precheck/module.rb +23 -0
- data/precheck/lib/precheck/options.rb +110 -0
- data/precheck/lib/precheck/rule.rb +171 -0
- data/precheck/lib/precheck/rule_check_result.rb +19 -0
- data/precheck/lib/precheck/rule_processor.rb +265 -0
- data/precheck/lib/precheck/rules/abstract_text_match_rule.rb +80 -0
- data/precheck/lib/precheck/rules/all.rb +1 -0
- data/precheck/lib/precheck/rules/copyright_date_rule.rb +37 -0
- data/precheck/lib/precheck/rules/curse_words_rule.rb +62 -0
- data/precheck/lib/precheck/rules/custom_text_rule.rb +35 -0
- data/precheck/lib/precheck/rules/free_stuff_iap_rule.rb +31 -0
- data/precheck/lib/precheck/rules/future_functionality_rule.rb +33 -0
- data/precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb +37 -0
- data/precheck/lib/precheck/rules/other_platforms_rule.rb +43 -0
- data/precheck/lib/precheck/rules/placeholder_words_rule.rb +31 -0
- data/precheck/lib/precheck/rules/rules_data/curse_word_hashes/en_us.txt +349 -0
- data/precheck/lib/precheck/rules/test_words_rule.rb +30 -0
- data/precheck/lib/precheck/rules/unreachable_urls_rule.rb +47 -0
- data/precheck/lib/precheck/runner.rb +202 -0
- data/precheck/lib/precheck.rb +3 -0
- data/produce/README.md +17 -0
- data/produce/lib/produce/available_default_languages.rb +51 -0
- data/produce/lib/produce/cloud_container.rb +82 -0
- data/produce/lib/produce/commands_generator.rb +337 -0
- data/produce/lib/produce/developer_center.rb +181 -0
- data/produce/lib/produce/group.rb +90 -0
- data/produce/lib/produce/itunes_connect.rb +139 -0
- data/produce/lib/produce/manager.rb +15 -0
- data/produce/lib/produce/merchant.rb +121 -0
- data/produce/lib/produce/module.rb +14 -0
- data/produce/lib/produce/options.rb +184 -0
- data/produce/lib/produce/service.rb +425 -0
- data/produce/lib/produce.rb +6 -0
- data/scan/README.md +17 -0
- data/scan/lib/assets/ScanfileTemplate +16 -0
- data/scan/lib/assets/ScanfileTemplate.swift +13 -0
- data/scan/lib/scan/commands_generator.rb +79 -0
- data/scan/lib/scan/detect_values.rb +244 -0
- data/scan/lib/scan/error_handler.rb +66 -0
- data/scan/lib/scan/manager.rb +38 -0
- data/scan/lib/scan/module.rb +37 -0
- data/scan/lib/scan/options.rb +541 -0
- data/scan/lib/scan/runner.rb +428 -0
- data/scan/lib/scan/slack_poster.rb +63 -0
- data/scan/lib/scan/test_command_generator.rb +262 -0
- data/scan/lib/scan/test_result_parser.rb +33 -0
- data/scan/lib/scan/xcpretty_reporter_options_generator.rb +85 -0
- data/scan/lib/scan.rb +10 -0
- data/screengrab/README.md +17 -0
- data/screengrab/lib/assets/ScreengrabfileTemplate +15 -0
- data/screengrab/lib/assets/ScreengrabfileTemplate.swift +15 -0
- data/screengrab/lib/screengrab/android_environment.rb +43 -0
- data/screengrab/lib/screengrab/commands_generator.rb +71 -0
- data/screengrab/lib/screengrab/dependency_checker.rb +38 -0
- data/screengrab/lib/screengrab/detect_values.rb +16 -0
- data/screengrab/lib/screengrab/module.rb +26 -0
- data/screengrab/lib/screengrab/options.rb +151 -0
- data/screengrab/lib/screengrab/page.html.erb +190 -0
- data/screengrab/lib/screengrab/reports_generator.rb +36 -0
- data/screengrab/lib/screengrab/runner.rb +452 -0
- data/screengrab/lib/screengrab/setup.rb +24 -0
- data/screengrab/lib/screengrab.rb +7 -0
- data/sigh/README.md +17 -0
- data/sigh/lib/assets/resign.sh +932 -0
- data/sigh/lib/sigh/commands_generator.rb +155 -0
- data/sigh/lib/sigh/download_all.rb +120 -0
- data/sigh/lib/sigh/local_manage.rb +145 -0
- data/sigh/lib/sigh/manager.rb +47 -0
- data/sigh/lib/sigh/module.rb +44 -0
- data/sigh/lib/sigh/options.rb +199 -0
- data/sigh/lib/sigh/repair.rb +34 -0
- data/sigh/lib/sigh/resign.rb +220 -0
- data/sigh/lib/sigh/runner.rb +412 -0
- data/sigh/lib/sigh.rb +4 -0
- data/snapshot/README.md +17 -0
- data/snapshot/lib/assets/SnapfileTemplate +38 -0
- data/snapshot/lib/assets/SnapfileTemplate.swift +42 -0
- data/snapshot/lib/assets/SnapshotHelper.swift +309 -0
- data/snapshot/lib/assets/SnapshotHelperXcode8.swift +172 -0
- data/snapshot/lib/snapshot/collector.rb +140 -0
- data/snapshot/lib/snapshot/commands_generator.rb +117 -0
- data/snapshot/lib/snapshot/dependency_checker.rb +69 -0
- data/snapshot/lib/snapshot/detect_values.rb +86 -0
- data/snapshot/lib/snapshot/error_handler.rb +24 -0
- data/snapshot/lib/snapshot/fixes/README.md +5 -0
- data/snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb +27 -0
- data/snapshot/lib/snapshot/fixes/simulator_shared_pasteboard.rb +16 -0
- data/snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb +27 -0
- data/snapshot/lib/snapshot/latest_os_version.rb +34 -0
- data/snapshot/lib/snapshot/module.rb +44 -0
- data/snapshot/lib/snapshot/options.rb +326 -0
- data/snapshot/lib/snapshot/page.html.erb +285 -0
- data/snapshot/lib/snapshot/reports_generator.rb +154 -0
- data/snapshot/lib/snapshot/reset_simulators.rb +122 -0
- data/snapshot/lib/snapshot/runner.rb +146 -0
- data/snapshot/lib/snapshot/screenshot_flatten.rb +20 -0
- data/snapshot/lib/snapshot/screenshot_rotate.rb +36 -0
- data/snapshot/lib/snapshot/setup.rb +58 -0
- data/snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb +64 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +219 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +220 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_xcode_8.rb +113 -0
- data/snapshot/lib/snapshot/test_command_generator.rb +157 -0
- data/snapshot/lib/snapshot/test_command_generator_base.rb +130 -0
- data/snapshot/lib/snapshot/test_command_generator_xcode_8.rb +70 -0
- data/snapshot/lib/snapshot/update.rb +38 -0
- data/snapshot/lib/snapshot.rb +19 -0
- data/spaceship/README.md +173 -0
- data/spaceship/lib/assets/displayFamilies.json +181 -0
- data/spaceship/lib/assets/languageMapping.json +306 -0
- data/spaceship/lib/assets/languageMappingReadable.json +30 -0
- data/spaceship/lib/spaceship/base.rb +310 -0
- data/spaceship/lib/spaceship/client.rb +988 -0
- data/spaceship/lib/spaceship/commands_generator.rb +55 -0
- data/spaceship/lib/spaceship/connect_api/api_client.rb +356 -0
- data/spaceship/lib/spaceship/connect_api/client.rb +216 -0
- data/spaceship/lib/spaceship/connect_api/file_uploader.rb +99 -0
- data/spaceship/lib/spaceship/connect_api/model.rb +172 -0
- data/spaceship/lib/spaceship/connect_api/models/actor.rb +26 -0
- data/spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb +147 -0
- data/spaceship/lib/spaceship/connect_api/models/app.rb +482 -0
- data/spaceship/lib/spaceship/connect_api/models/app_category.rb +94 -0
- data/spaceship/lib/spaceship/connect_api/models/app_data_usage.rb +59 -0
- data/spaceship/lib/spaceship/connect_api/models/app_data_usage_category.rb +65 -0
- data/spaceship/lib/spaceship/connect_api/models/app_data_usage_data_protection.rb +27 -0
- data/spaceship/lib/spaceship/connect_api/models/app_data_usage_grouping.rb +18 -0
- data/spaceship/lib/spaceship/connect_api/models/app_data_usage_purposes.rb +37 -0
- data/spaceship/lib/spaceship/connect_api/models/app_data_usages_publish_state.rb +36 -0
- data/spaceship/lib/spaceship/connect_api/models/app_info.rb +112 -0
- data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +48 -0
- data/spaceship/lib/spaceship/connect_api/models/app_preview.rb +135 -0
- data/spaceship/lib/spaceship/connect_api/models/app_preview_set.rb +109 -0
- data/spaceship/lib/spaceship/connect_api/models/app_price.rb +22 -0
- data/spaceship/lib/spaceship/connect_api/models/app_price_point.rb +26 -0
- data/spaceship/lib/spaceship/connect_api/models/app_price_tier.rb +12 -0
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot.rb +189 -0
- data/spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb +169 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_review_attachment.rb +73 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb +53 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +241 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +115 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_phased_release.rb +57 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_release_request.rb +12 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_submission.rb +27 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb +28 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb +32 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_app_review_submission.rb +27 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_build_localization.rb +20 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_build_metric.rb +24 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_feedback.rb +77 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_group.rb +67 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_screenshot.rb +18 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_tester.rb +63 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb +44 -0
- data/spaceship/lib/spaceship/connect_api/models/build.rb +195 -0
- data/spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb +69 -0
- data/spaceship/lib/spaceship/connect_api/models/build_bundle.rb +68 -0
- data/spaceship/lib/spaceship/connect_api/models/build_bundle_file_sizes.rb +34 -0
- data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +38 -0
- data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +93 -0
- data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +136 -0
- data/spaceship/lib/spaceship/connect_api/models/capabilities.rb +27 -0
- data/spaceship/lib/spaceship/connect_api/models/certificate.rb +110 -0
- data/spaceship/lib/spaceship/connect_api/models/custom_app_organization.rb +43 -0
- data/spaceship/lib/spaceship/connect_api/models/custom_app_user.rb +41 -0
- data/spaceship/lib/spaceship/connect_api/models/device.rb +133 -0
- data/spaceship/lib/spaceship/connect_api/models/idfa_declaration.rb +43 -0
- data/spaceship/lib/spaceship/connect_api/models/pre_release_version.rb +20 -0
- data/spaceship/lib/spaceship/connect_api/models/profile.rb +111 -0
- data/spaceship/lib/spaceship/connect_api/models/reset_ratings_request.rb +27 -0
- data/spaceship/lib/spaceship/connect_api/models/resolution_center_message.rb +29 -0
- data/spaceship/lib/spaceship/connect_api/models/resolution_center_thread.rb +67 -0
- data/spaceship/lib/spaceship/connect_api/models/review_rejection.rb +19 -0
- data/spaceship/lib/spaceship/connect_api/models/review_submission.rb +86 -0
- data/spaceship/lib/spaceship/connect_api/models/review_submission_item.rb +40 -0
- data/spaceship/lib/spaceship/connect_api/models/sandbox_tester.rb +67 -0
- data/spaceship/lib/spaceship/connect_api/models/territory.rb +28 -0
- data/spaceship/lib/spaceship/connect_api/models/user.rb +72 -0
- data/spaceship/lib/spaceship/connect_api/models/user_invitation.rb +96 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/client.rb +92 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +264 -0
- data/spaceship/lib/spaceship/connect_api/response.rb +86 -0
- data/spaceship/lib/spaceship/connect_api/spaceship.rb +102 -0
- data/spaceship/lib/spaceship/connect_api/testflight/client.rb +27 -0
- data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +513 -0
- data/spaceship/lib/spaceship/connect_api/token.rb +120 -0
- data/spaceship/lib/spaceship/connect_api/token_refresh_middleware.rb +24 -0
- data/spaceship/lib/spaceship/connect_api/tunes/client.rb +27 -0
- data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +1281 -0
- data/spaceship/lib/spaceship/connect_api/users/client.rb +27 -0
- data/spaceship/lib/spaceship/connect_api/users/users.rb +135 -0
- data/spaceship/lib/spaceship/connect_api.rb +132 -0
- data/spaceship/lib/spaceship/du/du_client.rb +138 -0
- data/spaceship/lib/spaceship/du/upload_file.rb +58 -0
- data/spaceship/lib/spaceship/du/utilities.rb +99 -0
- data/spaceship/lib/spaceship/errors.rb +135 -0
- data/spaceship/lib/spaceship/globals.rb +21 -0
- data/spaceship/lib/spaceship/hashcash.rb +52 -0
- data/spaceship/lib/spaceship/helper/net_http_generic_request.rb +20 -0
- data/spaceship/lib/spaceship/helper/plist_middleware.rb +16 -0
- data/spaceship/lib/spaceship/helper/rels_middleware.rb +28 -0
- data/spaceship/lib/spaceship/launcher.rb +99 -0
- data/spaceship/lib/spaceship/module.rb +8 -0
- data/spaceship/lib/spaceship/playground.rb +75 -0
- data/spaceship/lib/spaceship/portal/app.rb +201 -0
- data/spaceship/lib/spaceship/portal/app_group.rb +73 -0
- data/spaceship/lib/spaceship/portal/app_service.rb +87 -0
- data/spaceship/lib/spaceship/portal/certificate.rb +366 -0
- data/spaceship/lib/spaceship/portal/cloud_container.rb +74 -0
- data/spaceship/lib/spaceship/portal/device.rb +191 -0
- data/spaceship/lib/spaceship/portal/invite.rb +53 -0
- data/spaceship/lib/spaceship/portal/key.rb +101 -0
- data/spaceship/lib/spaceship/portal/legacy_wrapper.rb +21 -0
- data/spaceship/lib/spaceship/portal/merchant.rb +86 -0
- data/spaceship/lib/spaceship/portal/passbook.rb +78 -0
- data/spaceship/lib/spaceship/portal/person.rb +62 -0
- data/spaceship/lib/spaceship/portal/persons.rb +67 -0
- data/spaceship/lib/spaceship/portal/portal.rb +17 -0
- data/spaceship/lib/spaceship/portal/portal_base.rb +16 -0
- data/spaceship/lib/spaceship/portal/portal_client.rb +862 -0
- data/spaceship/lib/spaceship/portal/provisioning_profile.rb +559 -0
- data/spaceship/lib/spaceship/portal/provisioning_profile_template.rb +52 -0
- data/spaceship/lib/spaceship/portal/spaceship.rb +154 -0
- data/spaceship/lib/spaceship/portal/ui/select_team.rb +116 -0
- data/spaceship/lib/spaceship/portal/website_push.rb +88 -0
- data/spaceship/lib/spaceship/provider.rb +13 -0
- data/spaceship/lib/spaceship/spaceauth_runner.rb +97 -0
- data/spaceship/lib/spaceship/stats_middleware.rb +65 -0
- data/spaceship/lib/spaceship/test_flight/app_test_info.rb +40 -0
- data/spaceship/lib/spaceship/test_flight/base.rb +39 -0
- data/spaceship/lib/spaceship/test_flight/beta_review_info.rb +19 -0
- data/spaceship/lib/spaceship/test_flight/build.rb +242 -0
- data/spaceship/lib/spaceship/test_flight/build_trains.rb +50 -0
- data/spaceship/lib/spaceship/test_flight/client.rb +361 -0
- data/spaceship/lib/spaceship/test_flight/export_compliance.rb +12 -0
- data/spaceship/lib/spaceship/test_flight/group.rb +131 -0
- data/spaceship/lib/spaceship/test_flight/test_info.rb +56 -0
- data/spaceship/lib/spaceship/test_flight/tester.rb +136 -0
- data/spaceship/lib/spaceship/test_flight.rb +10 -0
- data/spaceship/lib/spaceship/tunes/app_analytics.rb +168 -0
- data/spaceship/lib/spaceship/tunes/app_details.rb +147 -0
- data/spaceship/lib/spaceship/tunes/app_image.rb +51 -0
- data/spaceship/lib/spaceship/tunes/app_ratings.rb +58 -0
- data/spaceship/lib/spaceship/tunes/app_review.rb +55 -0
- data/spaceship/lib/spaceship/tunes/app_review_attachment.rb +49 -0
- data/spaceship/lib/spaceship/tunes/app_screenshot.rb +12 -0
- data/spaceship/lib/spaceship/tunes/app_status.rb +63 -0
- data/spaceship/lib/spaceship/tunes/app_submission.rb +161 -0
- data/spaceship/lib/spaceship/tunes/app_trailer.rb +64 -0
- data/spaceship/lib/spaceship/tunes/app_version.rb +970 -0
- data/spaceship/lib/spaceship/tunes/app_version_common.rb +35 -0
- data/spaceship/lib/spaceship/tunes/app_version_generated_promocodes.rb +28 -0
- data/spaceship/lib/spaceship/tunes/app_version_history.rb +52 -0
- data/spaceship/lib/spaceship/tunes/app_version_promocodes.rb +27 -0
- data/spaceship/lib/spaceship/tunes/app_version_ref.rb +15 -0
- data/spaceship/lib/spaceship/tunes/app_version_states_history.rb +27 -0
- data/spaceship/lib/spaceship/tunes/application.rb +453 -0
- data/spaceship/lib/spaceship/tunes/availability.rb +164 -0
- data/spaceship/lib/spaceship/tunes/b2b_organization.rb +50 -0
- data/spaceship/lib/spaceship/tunes/b2b_user.rb +30 -0
- data/spaceship/lib/spaceship/tunes/build.rb +263 -0
- data/spaceship/lib/spaceship/tunes/build_details.rb +184 -0
- data/spaceship/lib/spaceship/tunes/build_train.rb +181 -0
- data/spaceship/lib/spaceship/tunes/developer_response.rb +23 -0
- data/spaceship/lib/spaceship/tunes/device_type.rb +17 -0
- data/spaceship/lib/spaceship/tunes/display_family.rb +84 -0
- data/spaceship/lib/spaceship/tunes/errors.rb +17 -0
- data/spaceship/lib/spaceship/tunes/iap.rb +168 -0
- data/spaceship/lib/spaceship/tunes/iap_detail.rb +264 -0
- data/spaceship/lib/spaceship/tunes/iap_families.rb +68 -0
- data/spaceship/lib/spaceship/tunes/iap_family_details.rb +90 -0
- data/spaceship/lib/spaceship/tunes/iap_family_list.rb +28 -0
- data/spaceship/lib/spaceship/tunes/iap_list.rb +76 -0
- data/spaceship/lib/spaceship/tunes/iap_status.rb +56 -0
- data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_info.rb +46 -0
- data/spaceship/lib/spaceship/tunes/iap_subscription_pricing_tier.rb +25 -0
- data/spaceship/lib/spaceship/tunes/iap_type.rb +45 -0
- data/spaceship/lib/spaceship/tunes/language_converter.rb +65 -0
- data/spaceship/lib/spaceship/tunes/language_item.rb +61 -0
- data/spaceship/lib/spaceship/tunes/legacy_wrapper.rb +13 -0
- data/spaceship/lib/spaceship/tunes/member.rb +84 -0
- data/spaceship/lib/spaceship/tunes/members.rb +35 -0
- data/spaceship/lib/spaceship/tunes/pricing_info.rb +42 -0
- data/spaceship/lib/spaceship/tunes/pricing_tier.rb +25 -0
- data/spaceship/lib/spaceship/tunes/sandbox_tester.rb +74 -0
- data/spaceship/lib/spaceship/tunes/spaceship.rb +39 -0
- data/spaceship/lib/spaceship/tunes/territory.rb +39 -0
- data/spaceship/lib/spaceship/tunes/transit_app_file.rb +23 -0
- data/spaceship/lib/spaceship/tunes/tunes.rb +34 -0
- data/spaceship/lib/spaceship/tunes/tunes_base.rb +17 -0
- data/spaceship/lib/spaceship/tunes/tunes_client.rb +1705 -0
- data/spaceship/lib/spaceship/tunes/version_set.rb +26 -0
- data/spaceship/lib/spaceship/two_step_or_factor_client.rb +380 -0
- data/spaceship/lib/spaceship/ui.rb +27 -0
- data/spaceship/lib/spaceship/upgrade_2fa_later_client.rb +91 -0
- data/spaceship/lib/spaceship.rb +31 -0
- data/supply/README.md +17 -0
- data/supply/lib/supply/apk_listing.rb +14 -0
- data/supply/lib/supply/client.rb +587 -0
- data/supply/lib/supply/commands_generator.rb +68 -0
- data/supply/lib/supply/languages.rb +88 -0
- data/supply/lib/supply/listing.rb +32 -0
- data/supply/lib/supply/options.rb +344 -0
- data/supply/lib/supply/reader.rb +41 -0
- data/supply/lib/supply/release_listing.rb +18 -0
- data/supply/lib/supply/setup.rb +122 -0
- data/supply/lib/supply/uploader.rb +489 -0
- data/supply/lib/supply.rb +53 -0
- data/trainer/lib/assets/junit.xml.erb +28 -0
- data/trainer/lib/trainer/commands_generator.rb +51 -0
- data/trainer/lib/trainer/junit_generator.rb +31 -0
- data/trainer/lib/trainer/module.rb +10 -0
- data/trainer/lib/trainer/options.rb +66 -0
- data/trainer/lib/trainer/test_parser.rb +398 -0
- data/trainer/lib/trainer/xcresult.rb +403 -0
- data/trainer/lib/trainer.rb +7 -0
- metadata +1909 -0
@@ -0,0 +1,304 @@
|
|
1
|
+
require_relative 'lane_manager_base.rb'
|
2
|
+
require_relative 'swift_runner_upgrader.rb'
|
3
|
+
|
4
|
+
module Fastlane
|
5
|
+
class SwiftLaneManager < LaneManagerBase
|
6
|
+
# @param lane_name The name of the lane to execute
|
7
|
+
# @param parameters [Hash] The parameters passed from the command line to the lane
|
8
|
+
# @param env Dot Env Information
|
9
|
+
def self.cruise_lane(lane, parameters = nil, env = nil, disable_runner_upgrades: false, swift_server_port: nil)
|
10
|
+
UI.user_error!("lane must be a string") unless lane.kind_of?(String) || lane.nil?
|
11
|
+
UI.user_error!("parameters must be a hash") unless parameters.kind_of?(Hash) || parameters.nil?
|
12
|
+
|
13
|
+
# Sets environment variable and lane context for lane name
|
14
|
+
ENV["FASTLANE_LANE_NAME"] = lane
|
15
|
+
Actions.lane_context[Actions::SharedValues::LANE_NAME] = lane
|
16
|
+
|
17
|
+
started = Time.now
|
18
|
+
e = nil
|
19
|
+
begin
|
20
|
+
display_upgraded_message = false
|
21
|
+
if disable_runner_upgrades
|
22
|
+
UI.verbose("disable_runner_upgrades is true, not attempting to update the FastlaneRunner project".yellow)
|
23
|
+
elsif Helper.ci?
|
24
|
+
UI.verbose("Running in CI, not attempting to update the FastlaneRunner project".yellow)
|
25
|
+
else
|
26
|
+
display_upgraded_message = self.ensure_runner_up_to_date_fastlane!
|
27
|
+
end
|
28
|
+
|
29
|
+
self.ensure_runner_built!
|
30
|
+
swift_server_port ||= 2000
|
31
|
+
socket_thread = self.start_socket_thread(port: swift_server_port)
|
32
|
+
sleep(0.250) while socket_thread[:ready].nil?
|
33
|
+
# wait on socket_thread to be in ready state, then start the runner thread
|
34
|
+
self.cruise_swift_lane_in_thread(lane, parameters, swift_server_port)
|
35
|
+
|
36
|
+
socket_thread.value
|
37
|
+
rescue Exception => ex # rubocop:disable Lint/RescueException
|
38
|
+
e = ex
|
39
|
+
end
|
40
|
+
# If we have a thread exception, drop that in the exception
|
41
|
+
# won't ever have a situation where e is non-nil, and socket_thread[:exception] is also non-nil
|
42
|
+
e ||= socket_thread[:exception]
|
43
|
+
|
44
|
+
unless e.nil?
|
45
|
+
print_lane_context
|
46
|
+
|
47
|
+
# We also catch Exception, since the implemented action might send a SystemExit signal
|
48
|
+
# (or similar). We still want to catch that, since we want properly finish running fastlane
|
49
|
+
# Tested with `xcake`, which throws a `Xcake::Informative` object
|
50
|
+
UI.error(e.to_s) if e.kind_of?(StandardError) # we don't want to print things like 'system exit'
|
51
|
+
end
|
52
|
+
|
53
|
+
skip_message = false
|
54
|
+
|
55
|
+
# if socket_thread is nil, we were probably debugging, or something else weird happened
|
56
|
+
exit_reason = :cancelled if socket_thread.nil?
|
57
|
+
|
58
|
+
# normal exit means we have a reason
|
59
|
+
exit_reason ||= socket_thread[:exit_reason]
|
60
|
+
|
61
|
+
if exit_reason == :cancelled && e.nil?
|
62
|
+
skip_message = true
|
63
|
+
end
|
64
|
+
|
65
|
+
duration = ((Time.now - started) / 60.0).round
|
66
|
+
|
67
|
+
finish_fastlane(nil, duration, e, skip_message: skip_message)
|
68
|
+
|
69
|
+
if display_upgraded_message
|
70
|
+
UI.message("We updated your FastlaneRunner project during this run to make it compatible with your current version of fastlane.".yellow)
|
71
|
+
UI.message("Please make sure to check the changes into source control.".yellow)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def self.display_lanes
|
76
|
+
self.ensure_runner_built!
|
77
|
+
return_value = Actions.sh(%(#{FastlaneCore::FastlaneFolder.swift_runner_path} lanes))
|
78
|
+
if FastlaneCore::Globals.verbose?
|
79
|
+
UI.message("runner output: ".yellow + return_value)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def self.cruise_swift_lane_in_thread(lane, parameters = nil, swift_server_port)
|
84
|
+
if parameters.nil?
|
85
|
+
parameters = {}
|
86
|
+
end
|
87
|
+
|
88
|
+
parameter_string = ""
|
89
|
+
parameters.each do |key, value|
|
90
|
+
parameter_string += " #{key} #{value}"
|
91
|
+
end
|
92
|
+
|
93
|
+
if FastlaneCore::Globals.verbose?
|
94
|
+
parameter_string += " logMode verbose"
|
95
|
+
end
|
96
|
+
|
97
|
+
parameter_string += " swiftServerPort #{swift_server_port}"
|
98
|
+
|
99
|
+
return Thread.new do
|
100
|
+
if FastlaneCore::Globals.verbose?
|
101
|
+
return_value = Actions.sh(%(#{FastlaneCore::FastlaneFolder.swift_runner_path} lane #{lane}#{parameter_string}))
|
102
|
+
UI.message("runner output: ".yellow + return_value)
|
103
|
+
else
|
104
|
+
Actions.sh(%(#{FastlaneCore::FastlaneFolder.swift_runner_path} lane #{lane}#{parameter_string} > /dev/null))
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
def self.swap_paths_in_target(target: nil, file_refs_to_swap: nil, expected_path_to_replacement_path_tuples: nil)
|
110
|
+
made_project_updates = false
|
111
|
+
file_refs_to_swap.each do |file_ref|
|
112
|
+
expected_path_to_replacement_path_tuples.each do |preinstalled_config_relative_path, user_config_relative_path|
|
113
|
+
next unless file_ref.path == preinstalled_config_relative_path
|
114
|
+
|
115
|
+
file_ref.path = user_config_relative_path
|
116
|
+
made_project_updates = true
|
117
|
+
end
|
118
|
+
end
|
119
|
+
return made_project_updates
|
120
|
+
end
|
121
|
+
|
122
|
+
# Find all the config files we care about (Deliverfile, Gymfile, etc), and build tuples of what file we'll look for
|
123
|
+
# in the Xcode project, and what file paths we'll need to swap (since we have to inject the user's configs)
|
124
|
+
#
|
125
|
+
# Return a mapping of what file paths we're looking => new file pathes we'll need to inject
|
126
|
+
def self.collect_tool_paths_for_replacement(all_user_tool_file_paths: nil, look_for_new_configs: nil)
|
127
|
+
new_user_tool_file_paths = all_user_tool_file_paths.select do |user_config, preinstalled_config_relative_path, user_config_relative_path|
|
128
|
+
if look_for_new_configs
|
129
|
+
File.exist?(user_config)
|
130
|
+
else
|
131
|
+
!File.exist?(user_config)
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
# Now strip out the fastlane-relative path and leave us with xcodeproj relative paths
|
136
|
+
new_user_tool_file_paths = new_user_tool_file_paths.map do |user_config, preinstalled_config_relative_path, user_config_relative_path|
|
137
|
+
if look_for_new_configs
|
138
|
+
[preinstalled_config_relative_path, user_config_relative_path]
|
139
|
+
else
|
140
|
+
[user_config_relative_path, preinstalled_config_relative_path]
|
141
|
+
end
|
142
|
+
end
|
143
|
+
return new_user_tool_file_paths
|
144
|
+
end
|
145
|
+
|
146
|
+
# open and return the swift project
|
147
|
+
def self.runner_project
|
148
|
+
runner_project_path = FastlaneCore::FastlaneFolder.swift_runner_project_path
|
149
|
+
require 'xcodeproj'
|
150
|
+
project = Xcodeproj::Project.open(runner_project_path)
|
151
|
+
return project
|
152
|
+
end
|
153
|
+
|
154
|
+
# return the FastlaneRunner build target
|
155
|
+
def self.target_for_fastlane_runner_project(runner_project: nil)
|
156
|
+
fastlane_runner_array = runner_project.targets.select do |target|
|
157
|
+
target.name == "FastlaneRunner"
|
158
|
+
end
|
159
|
+
|
160
|
+
# get runner target
|
161
|
+
runner_target = fastlane_runner_array.first
|
162
|
+
return runner_target
|
163
|
+
end
|
164
|
+
|
165
|
+
def self.target_source_file_refs(target: nil)
|
166
|
+
return target.source_build_phase.files.to_a.map(&:file_ref)
|
167
|
+
end
|
168
|
+
|
169
|
+
def self.first_time_setup
|
170
|
+
setup_message = ["fastlane is now configured to use a swift-based Fastfile (Fastfile.swift) 🦅"]
|
171
|
+
setup_message << "To edit your new Fastfile.swift, type: `open #{FastlaneCore::FastlaneFolder.swift_runner_project_path}`"
|
172
|
+
|
173
|
+
# Go through and link up whatever we generated during `fastlane init swift` so the user can edit them easily
|
174
|
+
self.link_user_configs_to_project(updated_message: setup_message.join("\n"))
|
175
|
+
end
|
176
|
+
|
177
|
+
def self.link_user_configs_to_project(updated_message: nil)
|
178
|
+
tool_files_folder = FastlaneCore::FastlaneFolder.path
|
179
|
+
|
180
|
+
# All the tools that could have <tool name>file.swift their paths, and where we expect to find the user's tool files.
|
181
|
+
all_user_tool_file_paths = TOOL_CONFIG_FILES.map do |tool_name|
|
182
|
+
[
|
183
|
+
File.join(tool_files_folder, "#{tool_name}.swift"),
|
184
|
+
"../#{tool_name}.swift",
|
185
|
+
"../../#{tool_name}.swift"
|
186
|
+
]
|
187
|
+
end
|
188
|
+
|
189
|
+
# Tool files the user now provides
|
190
|
+
new_user_tool_file_paths = collect_tool_paths_for_replacement(all_user_tool_file_paths: all_user_tool_file_paths, look_for_new_configs: true)
|
191
|
+
|
192
|
+
# Tool files we provide AND the user doesn't provide
|
193
|
+
user_tool_files_possibly_removed = collect_tool_paths_for_replacement(all_user_tool_file_paths: all_user_tool_file_paths, look_for_new_configs: false)
|
194
|
+
|
195
|
+
fastlane_runner_project = self.runner_project
|
196
|
+
runner_target = target_for_fastlane_runner_project(runner_project: fastlane_runner_project)
|
197
|
+
target_file_refs = target_source_file_refs(target: runner_target)
|
198
|
+
|
199
|
+
# Swap in all new user supplied configs into the project
|
200
|
+
project_modified = swap_paths_in_target(
|
201
|
+
target: runner_target,
|
202
|
+
file_refs_to_swap: target_file_refs,
|
203
|
+
expected_path_to_replacement_path_tuples: new_user_tool_file_paths
|
204
|
+
)
|
205
|
+
|
206
|
+
# Swap out any configs the user has removed, inserting fastlane defaults
|
207
|
+
project_modified = swap_paths_in_target(
|
208
|
+
target: runner_target,
|
209
|
+
file_refs_to_swap: target_file_refs,
|
210
|
+
expected_path_to_replacement_path_tuples: user_tool_files_possibly_removed
|
211
|
+
) || project_modified
|
212
|
+
|
213
|
+
if project_modified
|
214
|
+
fastlane_runner_project.save
|
215
|
+
updated_message ||= "Updated #{FastlaneCore::FastlaneFolder.swift_runner_project_path}"
|
216
|
+
UI.success(updated_message)
|
217
|
+
else
|
218
|
+
UI.success("FastlaneSwiftRunner project is up-to-date")
|
219
|
+
end
|
220
|
+
|
221
|
+
return project_modified
|
222
|
+
end
|
223
|
+
|
224
|
+
def self.start_socket_thread(port: nil)
|
225
|
+
require 'fastlane/server/socket_server'
|
226
|
+
require 'fastlane/server/socket_server_action_command_executor'
|
227
|
+
|
228
|
+
return Thread.new do
|
229
|
+
command_executor = SocketServerActionCommandExecutor.new
|
230
|
+
server = Fastlane::SocketServer.new(command_executor: command_executor, port: port)
|
231
|
+
server.start
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
def self.ensure_runner_built!
|
236
|
+
UI.verbose("Checking for new user-provided tool configuration files")
|
237
|
+
# if self.link_user_configs_to_project returns true, that means we need to rebuild the runner
|
238
|
+
runner_needs_building = self.link_user_configs_to_project
|
239
|
+
|
240
|
+
if FastlaneCore::FastlaneFolder.swift_runner_built?
|
241
|
+
runner_last_modified_age = File.mtime(FastlaneCore::FastlaneFolder.swift_runner_path).to_i
|
242
|
+
fastfile_last_modified_age = File.mtime(FastlaneCore::FastlaneFolder.fastfile_path).to_i
|
243
|
+
|
244
|
+
if runner_last_modified_age < fastfile_last_modified_age
|
245
|
+
# It's older than the Fastfile, so build it again
|
246
|
+
UI.verbose("Found changes to user's Fastfile.swift, setting re-build runner flag")
|
247
|
+
runner_needs_building = true
|
248
|
+
end
|
249
|
+
else
|
250
|
+
# Runner isn't built yet, so build it
|
251
|
+
UI.verbose("No runner found, setting re-build runner flag")
|
252
|
+
runner_needs_building = true
|
253
|
+
end
|
254
|
+
|
255
|
+
if runner_needs_building
|
256
|
+
self.build_runner!
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
# do we have the latest FastlaneSwiftRunner code from the current version of fastlane?
|
261
|
+
def self.ensure_runner_up_to_date_fastlane!
|
262
|
+
upgraded = false
|
263
|
+
upgrader = SwiftRunnerUpgrader.new
|
264
|
+
|
265
|
+
upgrade_needed = upgrader.upgrade_if_needed!(dry_run: true)
|
266
|
+
if upgrade_needed
|
267
|
+
UI.message("It looks like your `FastlaneSwiftRunner` project is not up-to-date".green)
|
268
|
+
UI.message("If you don't update it, fastlane could fail".green)
|
269
|
+
UI.message("We can try to automatically update it for you, usually this works 🎈 🐐".green)
|
270
|
+
user_wants_upgrade = UI.confirm("Should we try to upgrade just your `FastlaneSwiftRunner` project?")
|
271
|
+
|
272
|
+
UI.important("Ok, if things break, you can try to run this lane again and you'll be prompted to upgrade another time") unless user_wants_upgrade
|
273
|
+
|
274
|
+
if user_wants_upgrade
|
275
|
+
upgraded = upgrader.upgrade_if_needed!
|
276
|
+
UI.success("Updated your FastlaneSwiftRunner project with the newest runner code") if upgraded
|
277
|
+
self.build_runner! if upgraded
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
281
|
+
return upgraded
|
282
|
+
end
|
283
|
+
|
284
|
+
def self.build_runner!
|
285
|
+
UI.verbose("Building FastlaneSwiftRunner")
|
286
|
+
require 'fastlane_core'
|
287
|
+
require 'gym'
|
288
|
+
require 'gym/generators/build_command_generator'
|
289
|
+
|
290
|
+
project_options = {
|
291
|
+
project: FastlaneCore::FastlaneFolder.swift_runner_project_path,
|
292
|
+
skip_archive: true
|
293
|
+
}
|
294
|
+
Gym.config = FastlaneCore::Configuration.create(Gym::Options.available_options, project_options)
|
295
|
+
build_command = Gym::BuildCommandGenerator.generate
|
296
|
+
|
297
|
+
FastlaneCore::CommandExecutor.execute(
|
298
|
+
command: build_command,
|
299
|
+
print_all: false,
|
300
|
+
print_command: !Gym.config[:silent]
|
301
|
+
)
|
302
|
+
end
|
303
|
+
end
|
304
|
+
end
|
@@ -0,0 +1,265 @@
|
|
1
|
+
require 'xcodeproj'
|
2
|
+
require 'fileutils'
|
3
|
+
|
4
|
+
module Fastlane
|
5
|
+
# current logic:
|
6
|
+
# - find all groups in existing project
|
7
|
+
# -- if a group is missing, add it
|
8
|
+
# --- add all files for group into new group, build target, and compile phase
|
9
|
+
# - iterate through existing groups
|
10
|
+
# -- update all files needing updating
|
11
|
+
# - iterate through existing groups
|
12
|
+
# -- if a file from the manifest is new, add it to group, build target, and compile phase
|
13
|
+
# - Save and return true if any action was taken to modify any file (project included)
|
14
|
+
|
15
|
+
# build project
|
16
|
+
class SwiftRunnerUpgrader
|
17
|
+
API_VERSION_REGEX = /FastlaneRunnerAPIVersion\s*\[\s*([0-9]+.[0-9]+.[0-9]+)\s*\]/ # also used by SwiftFastlaneAPIGenerator
|
18
|
+
|
19
|
+
attr_accessor :target_project # project we'll be updating
|
20
|
+
attr_accessor :fastlane_runner_target # FastlaneRunner xcodeproj target
|
21
|
+
attr_accessor :manifest_hash # hash of file names to group names they belong to
|
22
|
+
attr_accessor :manifest_groups # unique list of group names that came from the manifest
|
23
|
+
attr_accessor :target_swift_code_file_folder_path # location in filesystem where all swift files should exist when we're done
|
24
|
+
attr_accessor :source_swift_code_file_folder_path # source location of where we're copying file from during the upgrade process
|
25
|
+
|
26
|
+
RELATIVE_SOURCE_FILE_PATH = "../"
|
27
|
+
|
28
|
+
def initialize
|
29
|
+
@source_swift_code_file_folder_path = File.expand_path(File.join(Fastlane::ROOT, "/swift"))
|
30
|
+
@target_swift_code_file_folder_path = FastlaneCore::FastlaneFolder.swift_folder_path
|
31
|
+
|
32
|
+
Fastlane::Setup.setup_swift_support
|
33
|
+
|
34
|
+
manifest_file = File.join(@source_swift_code_file_folder_path, "/upgrade_manifest.json")
|
35
|
+
UI.success("loading manifest: #{manifest_file}")
|
36
|
+
@manifest_hash = JSON.parse(File.read(manifest_file))
|
37
|
+
@manifest_groups = @manifest_hash.values.uniq
|
38
|
+
|
39
|
+
runner_project_path = FastlaneCore::FastlaneFolder.swift_runner_project_path
|
40
|
+
@target_project = Xcodeproj::Project.open(runner_project_path)
|
41
|
+
|
42
|
+
@root_group = @target_project.groups.select { |group| group.name == "Fastlane Runner" }.first
|
43
|
+
|
44
|
+
@fastlane_runner_target = @target_project.targets.select { |target| target.name == "FastlaneRunner" }.first
|
45
|
+
end
|
46
|
+
|
47
|
+
def upgrade_if_needed!(dry_run: false)
|
48
|
+
upgraded = add_missing_flags!(dry_run: dry_run)
|
49
|
+
upgraded = add_missing_copy_phase!(dry_run: dry_run) || upgraded
|
50
|
+
upgraded = add_missing_groups_and_files!(dry_run: dry_run) || upgraded
|
51
|
+
upgraded = upgrade_files!(dry_run: dry_run) || upgraded
|
52
|
+
upgraded = add_new_files_to_groups! || upgraded
|
53
|
+
|
54
|
+
UI.verbose("FastlaneRunner project has been updated and can be written back to disk") if upgraded
|
55
|
+
unless dry_run
|
56
|
+
UI.verbose("FastlaneRunner project changes have been stored") if upgraded
|
57
|
+
target_project.save if upgraded
|
58
|
+
end
|
59
|
+
|
60
|
+
return upgraded
|
61
|
+
end
|
62
|
+
|
63
|
+
def upgrade_files!(dry_run: false)
|
64
|
+
upgraded_anything = false
|
65
|
+
self.manifest_hash.each do |filename, group|
|
66
|
+
upgraded_anything = copy_file_if_needed!(filename: filename, dry_run: dry_run) || upgraded_anything
|
67
|
+
end
|
68
|
+
return upgraded_anything
|
69
|
+
end
|
70
|
+
|
71
|
+
def find_missing_groups
|
72
|
+
missing_groups = []
|
73
|
+
|
74
|
+
existing_group_names_set = @root_group.groups.map { |group| group.name.downcase }.to_set
|
75
|
+
self.manifest_groups.each do |group_name|
|
76
|
+
unless existing_group_names_set.include?(group_name.downcase)
|
77
|
+
missing_groups << group_name
|
78
|
+
end
|
79
|
+
end
|
80
|
+
return missing_groups
|
81
|
+
end
|
82
|
+
|
83
|
+
# compares source file against the target file's FastlaneRunnerAPIVersion and returned `true` if there is a difference
|
84
|
+
def file_needs_update?(filename: nil)
|
85
|
+
# looking for something like: FastlaneRunnerAPIVersion [0.9.1]
|
86
|
+
regex_to_use = API_VERSION_REGEX
|
87
|
+
|
88
|
+
source = File.join(self.source_swift_code_file_folder_path, "/#{filename}")
|
89
|
+
target = File.join(self.target_swift_code_file_folder_path, "/#{filename}")
|
90
|
+
|
91
|
+
# target doesn't have the file yet, so ya, I'd say it needs to be updated
|
92
|
+
return true unless File.exist?(target)
|
93
|
+
|
94
|
+
source_file_content = File.read(source)
|
95
|
+
target_file_content = File.read(target)
|
96
|
+
|
97
|
+
# ignore if files don't contain FastlaneRunnerAPIVersion
|
98
|
+
return false unless source_file_content.include?("FastlaneRunnerAPIVersion")
|
99
|
+
return false unless target_file_content.include?("FastlaneRunnerAPIVersion")
|
100
|
+
|
101
|
+
bundled_version = source_file_content.match(regex_to_use)[1]
|
102
|
+
target_version = target_file_content.match(regex_to_use)[1]
|
103
|
+
file_versions_are_different = bundled_version != target_version
|
104
|
+
|
105
|
+
UI.verbose("#{filename} FastlaneRunnerAPIVersion (bundled/target): #{bundled_version}/#{target_version}")
|
106
|
+
files_are_different = source_file_content != target_file_content
|
107
|
+
|
108
|
+
if files_are_different && !file_versions_are_different
|
109
|
+
UI.verbose("File versions are the same, but the two files are not equal, so that's a problem, setting needs update to 'true'")
|
110
|
+
end
|
111
|
+
|
112
|
+
needs_update = file_versions_are_different || files_are_different
|
113
|
+
|
114
|
+
return needs_update
|
115
|
+
end
|
116
|
+
|
117
|
+
# currently just copies file, even if not needed.
|
118
|
+
def copy_file_if_needed!(filename: nil, dry_run: false)
|
119
|
+
needs_update = file_needs_update?(filename: filename)
|
120
|
+
UI.verbose("file #{filename} needs an update") if needs_update
|
121
|
+
|
122
|
+
# Ok, we know if this file needs an update, can return now if it's a dry run
|
123
|
+
return needs_update if dry_run
|
124
|
+
|
125
|
+
unless needs_update
|
126
|
+
# no work needed, just return
|
127
|
+
return false
|
128
|
+
end
|
129
|
+
|
130
|
+
source = File.join(self.source_swift_code_file_folder_path, "/#{filename}")
|
131
|
+
target = File.join(self.target_swift_code_file_folder_path, "/#{filename}")
|
132
|
+
|
133
|
+
FileUtils.cp(source, target)
|
134
|
+
UI.verbose("Copied #{source} to #{target}")
|
135
|
+
return true
|
136
|
+
end
|
137
|
+
|
138
|
+
def add_new_files_to_groups!
|
139
|
+
inverted_hash = {}
|
140
|
+
|
141
|
+
# need {group => [file1, file2, etc..]} instead of: {file1 => group, file2 => group, etc...}
|
142
|
+
self.manifest_hash.each do |filename, group_name|
|
143
|
+
group_name = group_name.downcase
|
144
|
+
|
145
|
+
files_in_group = inverted_hash[group_name]
|
146
|
+
if files_in_group.nil?
|
147
|
+
files_in_group = []
|
148
|
+
inverted_hash[group_name] = files_in_group
|
149
|
+
end
|
150
|
+
files_in_group << filename
|
151
|
+
end
|
152
|
+
|
153
|
+
# this helps us signal to the user that we made changes
|
154
|
+
updated_project = false
|
155
|
+
# iterate through the groups and collect all the swift files in each
|
156
|
+
@root_group.groups.each do |group|
|
157
|
+
# current group's filenames
|
158
|
+
existing_group_files_set = group.files
|
159
|
+
.select { |file| !file.name.nil? && file.name.end_with?(".swift") }
|
160
|
+
.map(&:name)
|
161
|
+
.to_set
|
162
|
+
|
163
|
+
group_name = group.name.downcase
|
164
|
+
manifest_group_filenames = inverted_hash[group_name]
|
165
|
+
|
166
|
+
# compare the current group files to what the manifest says should minially be there
|
167
|
+
manifest_group_filenames.each do |filename|
|
168
|
+
# current group is missing a file from the manifest, need to add it
|
169
|
+
next if existing_group_files_set.include?(filename)
|
170
|
+
|
171
|
+
UI.verbose("Adding new file #{filename} to group: `#{group.name}`")
|
172
|
+
new_file_reference = group.new_file("#{RELATIVE_SOURCE_FILE_PATH}#{filename}")
|
173
|
+
|
174
|
+
# add references to the target, and make sure they are added to the build phase to
|
175
|
+
self.fastlane_runner_target.source_build_phase.add_file_reference(new_file_reference)
|
176
|
+
|
177
|
+
updated_project = true
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
return updated_project
|
182
|
+
end
|
183
|
+
|
184
|
+
# adds new groups, and the files inside those groups
|
185
|
+
# Note: this does not add new files to existing groups, that is in add_new_files_to_groups!
|
186
|
+
def add_missing_groups_and_files!(dry_run: false)
|
187
|
+
missing_groups = self.find_missing_groups.to_set
|
188
|
+
unless missing_groups.length > 0
|
189
|
+
UI.verbose("No missing groups found, so we don't need to worry about adding new groups")
|
190
|
+
return false
|
191
|
+
end
|
192
|
+
|
193
|
+
# well, we know we have some changes to make, so if this is a dry run,
|
194
|
+
# don't bother doing anything and just return true
|
195
|
+
return true if dry_run
|
196
|
+
|
197
|
+
missing_groups.each do |missing_group_name|
|
198
|
+
new_group = @root_group.new_group(missing_group_name)
|
199
|
+
|
200
|
+
# find every file in the manifest that belongs to the new group, and add it to the new group
|
201
|
+
self.manifest_hash.each do |filename, group|
|
202
|
+
next unless group.casecmp(missing_group_name.downcase).zero?
|
203
|
+
# assumes this is a new file, we don't handle moving files between groups
|
204
|
+
new_file_reference = new_group.new_file("#{RELATIVE_SOURCE_FILE_PATH}#{filename}")
|
205
|
+
|
206
|
+
# add references to the target, and make sure they are added to the build phase to
|
207
|
+
self.fastlane_runner_target.source_build_phase.add_file_reference(new_file_reference)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
211
|
+
return true # yup, we definitely updated groups
|
212
|
+
end
|
213
|
+
|
214
|
+
# adds build_settings flags to fastlane_runner_target
|
215
|
+
def add_missing_flags!(dry_run: false)
|
216
|
+
# Check if upgrade is needed
|
217
|
+
# If fastlane build settings exists already, we don't need any more changes to the Xcode project
|
218
|
+
self.fastlane_runner_target.build_configurations.each { |config|
|
219
|
+
return true if dry_run && config.build_settings["CODE_SIGN_IDENTITY"].nil?
|
220
|
+
return true if dry_run && config.build_settings["MACOSX_DEPLOYMENT_TARGET"].nil?
|
221
|
+
}
|
222
|
+
return false if dry_run
|
223
|
+
|
224
|
+
# Proceed to upgrade
|
225
|
+
self.fastlane_runner_target.build_configurations.each { |config|
|
226
|
+
config.build_settings["CODE_SIGN_IDENTITY"] = "-"
|
227
|
+
config.build_settings["MACOSX_DEPLOYMENT_TARGET"] = "10.12"
|
228
|
+
}
|
229
|
+
target_project.save
|
230
|
+
end
|
231
|
+
|
232
|
+
# adds new copy files build phase to fastlane_runner_target
|
233
|
+
def add_missing_copy_phase!(dry_run: false)
|
234
|
+
# Check if upgrade is needed
|
235
|
+
# If fastlane copy files build phase exists already, we don't need any more changes to the Xcode project
|
236
|
+
phase_copy_sign = self.fastlane_runner_target.copy_files_build_phases.select { |phase_copy| phase_copy.name == "FastlaneRunnerCopySigned" }.first
|
237
|
+
|
238
|
+
old_phase_copy_sign = self.fastlane_runner_target.shell_script_build_phases.select { |phase_copy| phase_copy.shell_script == "cd \"${SRCROOT}\"\ncd ../..\ncp \"${TARGET_BUILD_DIR}/${EXECUTABLE_PATH}\" .\n" }.first
|
239
|
+
|
240
|
+
return true if dry_run && phase_copy_sign.nil?
|
241
|
+
|
242
|
+
return false if dry_run
|
243
|
+
|
244
|
+
# Proceed to upgrade
|
245
|
+
old_phase_copy_sign.remove_from_project unless old_phase_copy_sign.nil?
|
246
|
+
|
247
|
+
unless phase_copy_sign
|
248
|
+
# Create a copy files build phase
|
249
|
+
phase_copy_sign = self.fastlane_runner_target.new_copy_files_build_phase("FastlaneRunnerCopySigned")
|
250
|
+
phase_copy_sign.dst_path = "$SRCROOT/../.."
|
251
|
+
phase_copy_sign.dst_subfolder_spec = "0"
|
252
|
+
phase_copy_sign.run_only_for_deployment_postprocessing = "0"
|
253
|
+
targetBinaryReference = self.fastlane_runner_target.product_reference
|
254
|
+
phase_copy_sign.add_file_reference(targetBinaryReference)
|
255
|
+
|
256
|
+
# Set "Code sign on copy" flag on Xcode for fastlane_runner_target
|
257
|
+
targetBinaryReference.build_files.each { |target_binary_build_file_reference|
|
258
|
+
target_binary_build_file_reference.settings = { "ATTRIBUTES": ["CodeSignOnCopy"] }
|
259
|
+
}
|
260
|
+
end
|
261
|
+
|
262
|
+
target_project.save
|
263
|
+
end
|
264
|
+
end
|
265
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
module Fastlane
|
2
|
+
TOOLS = [
|
3
|
+
:fastlane,
|
4
|
+
:pilot,
|
5
|
+
:spaceship,
|
6
|
+
:produce,
|
7
|
+
:deliver,
|
8
|
+
:frameit,
|
9
|
+
:pem,
|
10
|
+
:snapshot,
|
11
|
+
:screengrab,
|
12
|
+
:supply,
|
13
|
+
:cert,
|
14
|
+
:sigh,
|
15
|
+
:match,
|
16
|
+
:scan,
|
17
|
+
:gym,
|
18
|
+
:precheck,
|
19
|
+
:trainer
|
20
|
+
]
|
21
|
+
|
22
|
+
# a list of all the config files we currently expect
|
23
|
+
TOOL_CONFIG_FILES = [
|
24
|
+
"Appfile",
|
25
|
+
"Deliverfile",
|
26
|
+
"Fastfile",
|
27
|
+
"Gymfile",
|
28
|
+
"Matchfile",
|
29
|
+
"Precheckfile",
|
30
|
+
"Scanfile",
|
31
|
+
"Screengrabfile",
|
32
|
+
"Snapshotfile"
|
33
|
+
]
|
34
|
+
|
35
|
+
TOOL_ALIASES = {
|
36
|
+
"get_certificates": "cert",
|
37
|
+
"upload_to_app_store": "deliver",
|
38
|
+
"frame_screenshots": "frameit",
|
39
|
+
"build_app": "gym",
|
40
|
+
"build_ios_app": "gym",
|
41
|
+
"build_mac_app": "gym",
|
42
|
+
"sync_code_signing": "match",
|
43
|
+
"get_push_certificate": "pem",
|
44
|
+
"check_app_store_metadata": "precheck",
|
45
|
+
"capture_android_screenshots": "screengrab",
|
46
|
+
"get_provisioning_profile": "sigh",
|
47
|
+
"capture_ios_screenshots": "snapshot",
|
48
|
+
"upload_to_play_store": "supply"
|
49
|
+
}
|
50
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'fastlane_core'
|
2
|
+
|
3
|
+
require 'fastlane/version'
|
4
|
+
require 'fastlane/features'
|
5
|
+
require 'fastlane/shells'
|
6
|
+
require 'fastlane/tools'
|
7
|
+
require 'fastlane/documentation/actions_list'
|
8
|
+
require 'fastlane/actions/actions_helper' # has to be before fast_file
|
9
|
+
require 'fastlane/fast_file'
|
10
|
+
require 'fastlane/runner'
|
11
|
+
require 'fastlane/setup/setup'
|
12
|
+
require 'fastlane/lane'
|
13
|
+
require 'fastlane/junit_generator'
|
14
|
+
require 'fastlane/lane_manager'
|
15
|
+
require 'fastlane/lane_manager_base'
|
16
|
+
require 'fastlane/swift_lane_manager'
|
17
|
+
require 'fastlane/action'
|
18
|
+
require 'fastlane/action_collector'
|
19
|
+
require 'fastlane/supported_platforms'
|
20
|
+
require 'fastlane/configuration_helper'
|
21
|
+
require 'fastlane/one_off'
|
22
|
+
require 'fastlane/server/socket_server_action_command_executor'
|
23
|
+
require 'fastlane/server/socket_server'
|
24
|
+
require 'fastlane/command_line_handler'
|
25
|
+
require 'fastlane/documentation/docs_generator'
|
26
|
+
require 'fastlane/other_action'
|
27
|
+
require 'fastlane/plugins/plugins'
|
28
|
+
require 'fastlane/fastlane_require'
|
29
|
+
require "fastlane/swift_fastlane_api_generator.rb"
|
30
|
+
|
31
|
+
module Fastlane
|
32
|
+
Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
|
33
|
+
UI = FastlaneCore::UI
|
34
|
+
ROOT = Pathname.new(File.expand_path('../..', __FILE__))
|
35
|
+
|
36
|
+
class << self
|
37
|
+
def load_actions
|
38
|
+
Fastlane::Actions.load_default_actions
|
39
|
+
Fastlane::Actions.load_helpers
|
40
|
+
|
41
|
+
if FastlaneCore::FastlaneFolder.path
|
42
|
+
actions_path = File.join(FastlaneCore::FastlaneFolder.path, 'actions')
|
43
|
+
@external_actions = Fastlane::Actions.load_external_actions(actions_path) if File.directory?(actions_path)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
attr_reader :external_actions
|
48
|
+
|
49
|
+
def plugin_manager
|
50
|
+
@plugin_manager ||= Fastlane::PluginManager.new
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|