fastlane_iac_publish 0.1.0
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 +195 -0
- data/bin/bin-proxy +19 -0
- data/bin/fastlane +23 -0
- data/cert/README.md +17 -0
- data/cert/lib/cert.rb +4 -0
- data/cert/lib/cert/commands_generator.rb +59 -0
- data/cert/lib/cert/module.rb +14 -0
- data/cert/lib/cert/options.rb +92 -0
- data/cert/lib/cert/runner.rb +203 -0
- data/credentials_manager/README.md +64 -0
- data/credentials_manager/lib/credentials_manager.rb +7 -0
- data/credentials_manager/lib/credentials_manager/account_manager.rb +157 -0
- data/credentials_manager/lib/credentials_manager/appfile_config.rb +192 -0
- data/credentials_manager/lib/credentials_manager/cli.rb +67 -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 +7 -0
- data/deliver/lib/assets/summary.html.erb +299 -0
- data/deliver/lib/deliver.rb +15 -0
- data/deliver/lib/deliver/app_screenshot.rb +352 -0
- data/deliver/lib/deliver/commands_generator.rb +186 -0
- data/deliver/lib/deliver/detect_values.rb +93 -0
- data/deliver/lib/deliver/download_screenshots.rb +49 -0
- data/deliver/lib/deliver/generate_summary.rb +13 -0
- data/deliver/lib/deliver/html_generator.rb +71 -0
- data/deliver/lib/deliver/loader.rb +56 -0
- data/deliver/lib/deliver/module.rb +16 -0
- data/deliver/lib/deliver/options.rb +419 -0
- data/deliver/lib/deliver/runner.rb +202 -0
- data/deliver/lib/deliver/setup.rb +135 -0
- data/deliver/lib/deliver/submit_for_review.rb +122 -0
- data/deliver/lib/deliver/upload_assets.rb +27 -0
- data/deliver/lib/deliver/upload_metadata.rb +391 -0
- data/deliver/lib/deliver/upload_price_tier.rb +23 -0
- data/deliver/lib/deliver/upload_screenshots.rb +158 -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 +23 -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 +23 -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.rb +50 -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 +3 -0
- data/fastlane/lib/fastlane/actions/actions_helper.rb +162 -0
- data/fastlane/lib/fastlane/actions/adb.rb +78 -0
- data/fastlane/lib/fastlane/actions/adb_devices.rb +71 -0
- data/fastlane/lib/fastlane/actions/add_extra_platforms.rb +45 -0
- data/fastlane/lib/fastlane/actions/add_git_tag.rb +122 -0
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +193 -0
- data/fastlane/lib/fastlane/actions/appaloosa.rb +266 -0
- data/fastlane/lib/fastlane/actions/appetize.rb +188 -0
- data/fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb +146 -0
- data/fastlane/lib/fastlane/actions/appium.rb +206 -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 +105 -0
- data/fastlane/lib/fastlane/actions/artifactory.rb +157 -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 +155 -0
- data/fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb +107 -0
- data/fastlane/lib/fastlane/actions/build_android_app.rb +14 -0
- data/fastlane/lib/fastlane/actions/build_app.rb +14 -0
- data/fastlane/lib/fastlane/actions/build_ios_app.rb +151 -0
- data/fastlane/lib/fastlane/actions/bundle_install.rb +156 -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 +215 -0
- data/fastlane/lib/fastlane/actions/cert.rb +14 -0
- data/fastlane/lib/fastlane/actions/changelog_from_git_commits.rb +197 -0
- data/fastlane/lib/fastlane/actions/chatwork.rb +94 -0
- data/fastlane/lib/fastlane/actions/check_app_store_metadata.rb +53 -0
- data/fastlane/lib/fastlane/actions/clean_build_artifacts.rb +68 -0
- data/fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb +52 -0
- data/fastlane/lib/fastlane/actions/clear_derived_data.rb +70 -0
- data/fastlane/lib/fastlane/actions/clipboard.rb +52 -0
- data/fastlane/lib/fastlane/actions/cloc.rb +89 -0
- data/fastlane/lib/fastlane/actions/cocoapods.rb +148 -0
- data/fastlane/lib/fastlane/actions/commit_github_file.rb +186 -0
- data/fastlane/lib/fastlane/actions/commit_version_bump.rb +301 -0
- data/fastlane/lib/fastlane/actions/copy_artifacts.rb +114 -0
- data/fastlane/lib/fastlane/actions/crashlytics.rb +203 -0
- data/fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb +174 -0
- data/fastlane/lib/fastlane/actions/create_app_online.rb +75 -0
- data/fastlane/lib/fastlane/actions/create_keychain.rb +173 -0
- data/fastlane/lib/fastlane/actions/create_pull_request.rb +190 -0
- data/fastlane/lib/fastlane/actions/danger.rb +124 -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 +210 -0
- data/fastlane/lib/fastlane/actions/device_grid/README.md +157 -0
- data/fastlane/lib/fastlane/actions/docs/build_ios_app.md +245 -0
- data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +259 -0
- data/fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md +363 -0
- data/fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md +103 -0
- data/fastlane/lib/fastlane/actions/docs/create_app_online.md +282 -0
- data/fastlane/lib/fastlane/actions/docs/frame_screenshots.md +330 -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 +479 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +730 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_play_store.md +162 -0
- data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +231 -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_dsyms.rb +266 -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_git_branch.rb +69 -0
- data/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb +81 -0
- data/fastlane/lib/fastlane/actions/ensure_no_debug_code.rb +135 -0
- data/fastlane/lib/fastlane/actions/ensure_xcode_version.rb +97 -0
- data/fastlane/lib/fastlane/actions/environment_variable.rb +77 -0
- data/fastlane/lib/fastlane/actions/erb.rb +88 -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 +63 -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 +76 -0
- data/fastlane/lib/fastlane/actions/get_github_release.rb +163 -0
- data/fastlane/lib/fastlane/actions/get_info_plist_value.rb +78 -0
- data/fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb +82 -0
- data/fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb +120 -0
- data/fastlane/lib/fastlane/actions/get_provisioning_profile.rb +100 -0
- data/fastlane/lib/fastlane/actions/get_push_certificate.rb +87 -0
- data/fastlane/lib/fastlane/actions/get_version_number.rb +170 -0
- data/fastlane/lib/fastlane/actions/git_add.rb +93 -0
- data/fastlane/lib/fastlane/actions/git_branch.rb +58 -0
- data/fastlane/lib/fastlane/actions/git_commit.rb +80 -0
- data/fastlane/lib/fastlane/actions/git_pull.rb +53 -0
- data/fastlane/lib/fastlane/actions/git_submodule_update.rb +52 -0
- data/fastlane/lib/fastlane/actions/git_tag_exists.rb +74 -0
- data/fastlane/lib/fastlane/actions/github_api.rb +262 -0
- data/fastlane/lib/fastlane/actions/google_play_track_version_codes.rb +73 -0
- data/fastlane/lib/fastlane/actions/gradle.rb +249 -0
- data/fastlane/lib/fastlane/actions/gym.rb +14 -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 +406 -0
- data/fastlane/lib/fastlane/actions/ifttt.rb +96 -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 +71 -0
- data/fastlane/lib/fastlane/actions/increment_build_number.rb +117 -0
- data/fastlane/lib/fastlane/actions/increment_version_number.rb +177 -0
- data/fastlane/lib/fastlane/actions/install_on_device.rb +95 -0
- data/fastlane/lib/fastlane/actions/install_provisioning_profile.rb +58 -0
- data/fastlane/lib/fastlane/actions/install_xcode_plugin.rb +91 -0
- data/fastlane/lib/fastlane/actions/installr.rb +132 -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 +56 -0
- data/fastlane/lib/fastlane/actions/jira.rb +115 -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 +51 -0
- data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +134 -0
- data/fastlane/lib/fastlane/actions/lcov.rb +102 -0
- data/fastlane/lib/fastlane/actions/mailgun.rb +197 -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/min_fastlane_version.rb +57 -0
- data/fastlane/lib/fastlane/actions/modify_services.rb +173 -0
- data/fastlane/lib/fastlane/actions/nexus_upload.rb +230 -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 +269 -0
- data/fastlane/lib/fastlane/actions/onesignal.rb +156 -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 +183 -0
- data/fastlane/lib/fastlane/actions/pod_push.rb +145 -0
- data/fastlane/lib/fastlane/actions/podio_item.rb +217 -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 +119 -0
- data/fastlane/lib/fastlane/actions/push_git_tags.rb +76 -0
- data/fastlane/lib/fastlane/actions/push_to_git_remote.rb +127 -0
- data/fastlane/lib/fastlane/actions/puts.rb +68 -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 +110 -0
- data/fastlane/lib/fastlane/actions/register_devices.rb +160 -0
- data/fastlane/lib/fastlane/actions/reset_git_repo.rb +121 -0
- data/fastlane/lib/fastlane/actions/reset_simulator_contents.rb +92 -0
- data/fastlane/lib/fastlane/actions/resign.rb +132 -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 +74 -0
- data/fastlane/lib/fastlane/actions/ruby_version.rb +56 -0
- data/fastlane/lib/fastlane/actions/run_tests.rb +131 -0
- data/fastlane/lib/fastlane/actions/s3.rb +460 -0
- data/fastlane/lib/fastlane/actions/say.rb +56 -0
- data/fastlane/lib/fastlane/actions/scan.rb +14 -0
- data/fastlane/lib/fastlane/actions/scp.rb +114 -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 +172 -0
- data/fastlane/lib/fastlane/actions/set_github_release.rb +274 -0
- data/fastlane/lib/fastlane/actions/set_info_plist_value.rb +92 -0
- data/fastlane/lib/fastlane/actions/set_pod_key.rb +78 -0
- data/fastlane/lib/fastlane/actions/setup_ci.rb +121 -0
- data/fastlane/lib/fastlane/actions/setup_circle_ci.rb +58 -0
- data/fastlane/lib/fastlane/actions/setup_jenkins.rb +193 -0
- data/fastlane/lib/fastlane/actions/setup_travis.rb +57 -0
- data/fastlane/lib/fastlane/actions/sh.rb +71 -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 +288 -0
- data/fastlane/lib/fastlane/actions/slather.rb +314 -0
- data/fastlane/lib/fastlane/actions/snapshot.rb +14 -0
- data/fastlane/lib/fastlane/actions/sonar.rb +138 -0
- data/fastlane/lib/fastlane/actions/spaceship_logs.rb +135 -0
- data/fastlane/lib/fastlane/actions/splunkmint.rb +156 -0
- data/fastlane/lib/fastlane/actions/spm.rb +123 -0
- data/fastlane/lib/fastlane/actions/ssh.rb +162 -0
- data/fastlane/lib/fastlane/actions/supply.rb +14 -0
- data/fastlane/lib/fastlane/actions/swiftlint.rb +182 -0
- data/fastlane/lib/fastlane/actions/sync_code_signing.rb +103 -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 +263 -0
- data/fastlane/lib/fastlane/actions/testflight.rb +14 -0
- data/fastlane/lib/fastlane/actions/tryouts.rb +149 -0
- data/fastlane/lib/fastlane/actions/twitter.rb +89 -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 +91 -0
- data/fastlane/lib/fastlane/actions/update_app_identifier.rb +124 -0
- data/fastlane/lib/fastlane/actions/update_fastlane.rb +177 -0
- data/fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb +99 -0
- data/fastlane/lib/fastlane/actions/update_info_plist.rb +143 -0
- data/fastlane/lib/fastlane/actions/update_plist.rb +80 -0
- data/fastlane/lib/fastlane/actions/update_project_code_signing.rb +76 -0
- data/fastlane/lib/fastlane/actions/update_project_provisioning.rb +173 -0
- data/fastlane/lib/fastlane/actions/update_project_team.rb +95 -0
- data/fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb +91 -0
- data/fastlane/lib/fastlane/actions/update_url_schemes.rb +123 -0
- data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +244 -0
- data/fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb +165 -0
- data/fastlane/lib/fastlane/actions/upload_to_app_store.rb +65 -0
- data/fastlane/lib/fastlane/actions/upload_to_play_store.rb +80 -0
- data/fastlane/lib/fastlane/actions/upload_to_testflight.rb +107 -0
- data/fastlane/lib/fastlane/actions/validate_play_store_json_key.rb +104 -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 +152 -0
- data/fastlane/lib/fastlane/actions/version_bump_podspec.rb +105 -0
- data/fastlane/lib/fastlane/actions/version_get_podspec.rb +71 -0
- data/fastlane/lib/fastlane/actions/xcode_install.rb +105 -0
- data/fastlane/lib/fastlane/actions/xcode_select.rb +63 -0
- data/fastlane/lib/fastlane/actions/xcode_server_get_assets.rb +312 -0
- data/fastlane/lib/fastlane/actions/xcodebuild.rb +641 -0
- data/fastlane/lib/fastlane/actions/xcov.rb +66 -0
- data/fastlane/lib/fastlane/actions/xctool.rb +55 -0
- data/fastlane/lib/fastlane/actions/xcversion.rb +55 -0
- data/fastlane/lib/fastlane/actions/zip.rb +120 -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 +185 -0
- data/fastlane/lib/fastlane/command_line_handler.rb +49 -0
- data/fastlane/lib/fastlane/commands_generator.rb +350 -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 +89 -0
- data/fastlane/lib/fastlane/documentation/markdown_docs_generator.rb +228 -0
- data/fastlane/lib/fastlane/environment_printer.rb +297 -0
- data/fastlane/lib/fastlane/erb_template_helper.rb +30 -0
- data/fastlane/lib/fastlane/fast_file.rb +351 -0
- data/fastlane/lib/fastlane/fastlane_require.rb +75 -0
- data/fastlane/lib/fastlane/features.rb +4 -0
- data/fastlane/lib/fastlane/helper/README.md +29 -0
- data/fastlane/lib/fastlane/helper/adb_helper.rb +52 -0
- data/fastlane/lib/fastlane/helper/crashlytics_helper.rb +151 -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 +135 -0
- data/fastlane/lib/fastlane/helper/gradle_helper.rb +62 -0
- data/fastlane/lib/fastlane/helper/podspec_helper.rb +75 -0
- data/fastlane/lib/fastlane/helper/sh_helper.rb +134 -0
- data/fastlane/lib/fastlane/helper/xcodeproj_helper.rb +12 -0
- data/fastlane/lib/fastlane/helper/xcversion_helper.rb +25 -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 +140 -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/one_off.rb +45 -0
- data/fastlane/lib/fastlane/other_action.rb +29 -0
- data/fastlane/lib/fastlane/plugins/plugin_fetcher.rb +55 -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 +159 -0
- data/fastlane/lib/fastlane/plugins/plugin_manager.rb +387 -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 +35 -0
- data/fastlane/lib/fastlane/plugins/template/.circleci/config.yml +43 -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 +180 -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%.rb.erb +16 -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/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 +371 -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 +232 -0
- data/fastlane/lib/fastlane/server/socket_server_action_command_executor.rb +101 -0
- data/fastlane/lib/fastlane/setup/setup.rb +355 -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 +383 -0
- data/fastlane/lib/fastlane/swift_fastlane_function.rb +320 -0
- data/fastlane/lib/fastlane/swift_lane_manager.rb +304 -0
- data/fastlane/lib/fastlane/swift_runner_upgrader.rb +206 -0
- data/fastlane/lib/fastlane/tools.rb +33 -0
- data/fastlane/lib/fastlane/version.rb +6 -0
- data/fastlane/swift/Appfile.swift +17 -0
- data/fastlane/swift/ArgumentProcessor.swift +93 -0
- data/fastlane/swift/ControlCommand.swift +76 -0
- data/fastlane/swift/Deliverfile.swift +21 -0
- data/fastlane/swift/DeliverfileProtocol.swift +129 -0
- data/fastlane/swift/Fastfile.swift +12 -0
- data/fastlane/swift/Fastlane.swift +4396 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj +425 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme +103 -0
- data/fastlane/swift/FastlaneSwiftRunner/README.txt +10 -0
- data/fastlane/swift/Gymfile.swift +21 -0
- data/fastlane/swift/GymfileProtocol.swift +87 -0
- data/fastlane/swift/LaneFileProtocol.swift +140 -0
- data/fastlane/swift/Matchfile.swift +21 -0
- data/fastlane/swift/MatchfileProtocol.swift +61 -0
- data/fastlane/swift/Precheckfile.swift +21 -0
- data/fastlane/swift/PrecheckfileProtocol.swift +24 -0
- data/fastlane/swift/RubyCommand.swift +141 -0
- data/fastlane/swift/RubyCommandable.swift +44 -0
- data/fastlane/swift/Runner.swift +200 -0
- data/fastlane/swift/RunnerArgument.swift +24 -0
- data/fastlane/swift/Scanfile.swift +21 -0
- data/fastlane/swift/ScanfileProtocol.swift +117 -0
- data/fastlane/swift/Screengrabfile.swift +21 -0
- data/fastlane/swift/ScreengrabfileProtocol.swift +48 -0
- data/fastlane/swift/Snapshotfile.swift +21 -0
- data/fastlane/swift/SnapshotfileProtocol.swift +75 -0
- data/fastlane/swift/SocketClient.swift +305 -0
- data/fastlane/swift/SocketClientDelegateProtocol.swift +25 -0
- data/fastlane/swift/SocketResponse.swift +85 -0
- data/fastlane/swift/main.swift +52 -0
- data/fastlane/swift/upgrade_manifest.json +1 -0
- data/fastlane_core/README.md +79 -0
- data/fastlane_core/lib/assets/XMLTemplate.xml.erb +12 -0
- data/fastlane_core/lib/fastlane_core.rb +46 -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 +71 -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 +80 -0
- data/fastlane_core/lib/fastlane_core/cert_checker.rb +116 -0
- data/fastlane_core/lib/fastlane_core/command_executor.rb +99 -0
- data/fastlane_core/lib/fastlane_core/configuration/commander_generator.rb +103 -0
- data/fastlane_core/lib/fastlane_core/configuration/config_item.rb +314 -0
- data/fastlane_core/lib/fastlane_core/configuration/configuration.rb +332 -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 +331 -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 +414 -0
- data/fastlane_core/lib/fastlane_core/ios_app_identifier_guesser.rb +112 -0
- data/fastlane_core/lib/fastlane_core/ipa_file_analyser.rb +63 -0
- data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +52 -0
- data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +520 -0
- data/fastlane_core/lib/fastlane_core/keychain_importer.rb +74 -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 +44 -0
- data/fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb +48 -0
- data/fastlane_core/lib/fastlane_core/print_table.rb +131 -0
- data/fastlane_core/lib/fastlane_core/project.rb +481 -0
- data/fastlane_core/lib/fastlane_core/provisioning_profile.rb +111 -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 +17 -0
- data/fastlane_core/lib/fastlane_core/ui/errors.rb +1 -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/fastlane_runner.rb +294 -0
- data/fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb +62 -0
- data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +158 -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/frameit/README.md +17 -0
- data/frameit/lib/assets/empty.png +0 -0
- data/frameit/lib/frameit.rb +13 -0
- data/frameit/lib/frameit/commands_generator.rb +114 -0
- data/frameit/lib/frameit/config_parser.rb +114 -0
- data/frameit/lib/frameit/dependency_checker.rb +22 -0
- data/frameit/lib/frameit/device_types.rb +18 -0
- data/frameit/lib/frameit/editor.rb +563 -0
- data/frameit/lib/frameit/frame_downloader.rb +85 -0
- data/frameit/lib/frameit/mac_editor.rb +35 -0
- data/frameit/lib/frameit/module.rb +42 -0
- data/frameit/lib/frameit/offsets.rb +21 -0
- data/frameit/lib/frameit/options.rb +82 -0
- data/frameit/lib/frameit/runner.rb +82 -0
- data/frameit/lib/frameit/screenshot.rb +137 -0
- data/frameit/lib/frameit/strings_parser.rb +46 -0
- data/frameit/lib/frameit/template_finder.rb +42 -0
- data/frameit/lib/frameit/trim_box.rb +35 -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.rb +9 -0
- data/gym/lib/gym/code_signing_mapping.rb +181 -0
- data/gym/lib/gym/commands_generator.rb +78 -0
- data/gym/lib/gym/detect_values.rb +171 -0
- data/gym/lib/gym/error_handler.rb +306 -0
- data/gym/lib/gym/generators/README.md +1 -0
- data/gym/lib/gym/generators/build_command_generator.rb +143 -0
- data/gym/lib/gym/generators/package_command_generator.rb +56 -0
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +193 -0
- data/gym/lib/gym/manager.rb +22 -0
- data/gym/lib/gym/module.rb +36 -0
- data/gym/lib/gym/options.rb +262 -0
- data/gym/lib/gym/runner.rb +264 -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/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 +56 -0
- data/match/lib/match.rb +13 -0
- data/match/lib/match/change_password.rb +70 -0
- data/match/lib/match/commands_generator.rb +175 -0
- data/match/lib/match/encryption.rb +45 -0
- data/match/lib/match/encryption/interface.rb +17 -0
- data/match/lib/match/encryption/openssl.rb +161 -0
- data/match/lib/match/generator.rb +91 -0
- data/match/lib/match/migrate.rb +98 -0
- data/match/lib/match/module.rb +27 -0
- data/match/lib/match/nuke.rb +260 -0
- data/match/lib/match/options.rb +198 -0
- data/match/lib/match/runner.rb +333 -0
- data/match/lib/match/setup.rb +40 -0
- data/match/lib/match/spaceship_ensure.rb +83 -0
- data/match/lib/match/storage.rb +42 -0
- data/match/lib/match/storage/git_storage.rb +214 -0
- data/match/lib/match/storage/google_cloud_storage.rb +265 -0
- data/match/lib/match/storage/interface.rb +110 -0
- data/match/lib/match/table_printer.rb +51 -0
- data/match/lib/match/utils.rb +75 -0
- data/pem/README.md +17 -0
- data/pem/lib/pem.rb +4 -0
- data/pem/lib/pem/commands_generator.rb +46 -0
- data/pem/lib/pem/manager.rb +112 -0
- data/pem/lib/pem/module.rb +19 -0
- data/pem/lib/pem/options.rb +103 -0
- data/pilot/README.md +17 -0
- data/pilot/lib/pilot.rb +9 -0
- data/pilot/lib/pilot/build_manager.rb +453 -0
- data/pilot/lib/pilot/commands_generator.rb +174 -0
- data/pilot/lib/pilot/features.rb +0 -0
- data/pilot/lib/pilot/manager.rb +80 -0
- data/pilot/lib/pilot/module.rb +11 -0
- data/pilot/lib/pilot/options.rb +266 -0
- data/pilot/lib/pilot/tester_exporter.rb +58 -0
- data/pilot/lib/pilot/tester_importer.rb +53 -0
- data/pilot/lib/pilot/tester_manager.rb +168 -0
- data/pilot/lib/pilot/tester_util.rb +0 -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.rb +3 -0
- data/precheck/lib/precheck/commands_generator.rb +74 -0
- data/precheck/lib/precheck/item_to_check.rb +58 -0
- data/precheck/lib/precheck/module.rb +21 -0
- data/precheck/lib/precheck/options.rb +79 -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 +231 -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 +176 -0
- data/produce/README.md +17 -0
- data/produce/lib/produce.rb +6 -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 +235 -0
- data/produce/lib/produce/developer_center.rb +134 -0
- data/produce/lib/produce/group.rb +90 -0
- data/produce/lib/produce/itunes_connect.rb +92 -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 +172 -0
- data/produce/lib/produce/service.rb +313 -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.rb +10 -0
- data/scan/lib/scan/commands_generator.rb +78 -0
- data/scan/lib/scan/detect_values.rb +219 -0
- data/scan/lib/scan/error_handler.rb +52 -0
- data/scan/lib/scan/manager.rb +21 -0
- data/scan/lib/scan/module.rb +32 -0
- data/scan/lib/scan/options.rb +390 -0
- data/scan/lib/scan/runner.rb +173 -0
- data/scan/lib/scan/slack_poster.rb +60 -0
- data/scan/lib/scan/test_command_generator.rb +160 -0
- data/scan/lib/scan/test_result_parser.rb +26 -0
- data/scan/lib/scan/xcpretty_reporter_options_generator.rb +85 -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.rb +7 -0
- data/screengrab/lib/screengrab/android_environment.rb +91 -0
- data/screengrab/lib/screengrab/commands_generator.rb +70 -0
- data/screengrab/lib/screengrab/dependency_checker.rb +58 -0
- data/screengrab/lib/screengrab/detect_values.rb +16 -0
- data/screengrab/lib/screengrab/module.rb +24 -0
- data/screengrab/lib/screengrab/options.rb +135 -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 +379 -0
- data/screengrab/lib/screengrab/setup.rb +24 -0
- data/sigh/README.md +17 -0
- data/sigh/lib/assets/resign.sh +888 -0
- data/sigh/lib/sigh.rb +4 -0
- data/sigh/lib/sigh/commands_generator.rb +153 -0
- data/sigh/lib/sigh/download_all.rb +45 -0
- data/sigh/lib/sigh/local_manage.rb +145 -0
- data/sigh/lib/sigh/manager.rb +47 -0
- data/sigh/lib/sigh/module.rb +16 -0
- data/sigh/lib/sigh/options.rb +160 -0
- data/sigh/lib/sigh/repair.rb +34 -0
- data/sigh/lib/sigh/resign.rb +220 -0
- data/sigh/lib/sigh/runner.rb +285 -0
- data/snapshot/README.md +17 -0
- data/snapshot/lib/assets/SnapfileTemplate +34 -0
- data/snapshot/lib/assets/SnapfileTemplate.swift +41 -0
- data/snapshot/lib/assets/SnapshotHelper.swift +303 -0
- data/snapshot/lib/assets/SnapshotHelperXcode8.swift +172 -0
- data/snapshot/lib/snapshot.rb +19 -0
- data/snapshot/lib/snapshot/collector.rb +140 -0
- data/snapshot/lib/snapshot/commands_generator.rb +115 -0
- data/snapshot/lib/snapshot/dependency_checker.rb +69 -0
- data/snapshot/lib/snapshot/detect_values.rb +71 -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_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 +223 -0
- data/snapshot/lib/snapshot/page.html.erb +285 -0
- data/snapshot/lib/snapshot/reports_generator.rb +125 -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 +54 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb +215 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb +143 -0
- data/snapshot/lib/snapshot/simulator_launchers/simulator_launcher_xcode_8.rb +113 -0
- data/snapshot/lib/snapshot/test_command_generator.rb +102 -0
- data/snapshot/lib/snapshot/test_command_generator_base.rb +117 -0
- data/snapshot/lib/snapshot/test_command_generator_xcode_8.rb +67 -0
- data/snapshot/lib/snapshot/update.rb +36 -0
- data/spaceship/README.md +183 -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.rb +26 -0
- data/spaceship/lib/spaceship/babosa_fix.rb +30 -0
- data/spaceship/lib/spaceship/base.rb +310 -0
- data/spaceship/lib/spaceship/client.rb +892 -0
- data/spaceship/lib/spaceship/commands_generator.rb +52 -0
- data/spaceship/lib/spaceship/connect_api.rb +47 -0
- data/spaceship/lib/spaceship/connect_api/client.rb +178 -0
- data/spaceship/lib/spaceship/connect_api/model.rb +152 -0
- data/spaceship/lib/spaceship/connect_api/models/app.rb +97 -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 +26 -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_group.rb +41 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_tester.rb +56 -0
- data/spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb +43 -0
- data/spaceship/lib/spaceship/connect_api/models/build.rb +144 -0
- data/spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb +56 -0
- data/spaceship/lib/spaceship/connect_api/models/build_delivery.rb +36 -0
- data/spaceship/lib/spaceship/connect_api/models/bundle_id.rb +46 -0
- data/spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb +37 -0
- data/spaceship/lib/spaceship/connect_api/models/certificate.rb +48 -0
- data/spaceship/lib/spaceship/connect_api/models/device.rb +53 -0
- data/spaceship/lib/spaceship/connect_api/models/pre_release_version.rb +20 -0
- data/spaceship/lib/spaceship/connect_api/models/profile.rb +60 -0
- data/spaceship/lib/spaceship/connect_api/models/user.rb +50 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/client.rb +59 -0
- data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +48 -0
- data/spaceship/lib/spaceship/connect_api/response.rb +67 -0
- data/spaceship/lib/spaceship/connect_api/testflight/client.rb +33 -0
- data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +322 -0
- data/spaceship/lib/spaceship/connect_api/token.rb +56 -0
- data/spaceship/lib/spaceship/connect_api/users/client.rb +33 -0
- data/spaceship/lib/spaceship/connect_api/users/users.rb +16 -0
- data/spaceship/lib/spaceship/du/du_client.rb +134 -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 +79 -0
- data/spaceship/lib/spaceship/globals.rb +12 -0
- data/spaceship/lib/spaceship/helper/net_http_generic_request.rb +14 -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 +192 -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 +351 -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 +848 -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 +74 -0
- data/spaceship/lib/spaceship/test_flight.rb +10 -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 +239 -0
- data/spaceship/lib/spaceship/test_flight/build_trains.rb +46 -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/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 +961 -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 +448 -0
- data/spaceship/lib/spaceship/tunes/availability.rb +132 -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 +42 -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 +151 -0
- data/spaceship/lib/spaceship/tunes/iap_detail.rb +243 -0
- data/spaceship/lib/spaceship/tunes/iap_families.rb +57 -0
- data/spaceship/lib/spaceship/tunes/iap_family_details.rb +73 -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 +52 -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 +35 -0
- data/spaceship/lib/spaceship/tunes/tunes_base.rb +17 -0
- data/spaceship/lib/spaceship/tunes/tunes_client.rb +1572 -0
- data/spaceship/lib/spaceship/tunes/user_detail.rb +15 -0
- data/spaceship/lib/spaceship/tunes/version_set.rb +26 -0
- data/spaceship/lib/spaceship/two_step_or_factor_client.rb +287 -0
- data/spaceship/lib/spaceship/ui.rb +27 -0
- data/supply/README.md +17 -0
- data/supply/lib/supply.rb +30 -0
- data/supply/lib/supply/apk_listing.rb +14 -0
- data/supply/lib/supply/client.rb +458 -0
- data/supply/lib/supply/commands_generator.rb +66 -0
- data/supply/lib/supply/languages.rb +88 -0
- data/supply/lib/supply/listing.rb +32 -0
- data/supply/lib/supply/options.rb +266 -0
- data/supply/lib/supply/reader.rb +25 -0
- data/supply/lib/supply/setup.rb +112 -0
- data/supply/lib/supply/uploader.rb +349 -0
- metadata +1772 -0
@@ -0,0 +1,390 @@
|
|
1
|
+
require 'fastlane_core/configuration/config_item'
|
2
|
+
require 'credentials_manager/appfile_config'
|
3
|
+
require_relative 'module'
|
4
|
+
|
5
|
+
# rubocop:disable Metrics/ClassLength
|
6
|
+
module Scan
|
7
|
+
class Options
|
8
|
+
def self.verify_type(item_name, acceptable_types, value)
|
9
|
+
type_ok = [Array, String].any? { |type| value.kind_of?(type) }
|
10
|
+
UI.user_error!("'#{item_name}' should be of type #{acceptable_types.join(' or ')} but found: #{value.class.name}") unless type_ok
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.available_options
|
14
|
+
containing = FastlaneCore::Helper.fastlane_enabled_folder_path
|
15
|
+
|
16
|
+
[
|
17
|
+
# app to test
|
18
|
+
FastlaneCore::ConfigItem.new(key: :workspace,
|
19
|
+
short_option: "-w",
|
20
|
+
env_name: "SCAN_WORKSPACE",
|
21
|
+
optional: true,
|
22
|
+
description: "Path to the workspace file",
|
23
|
+
verify_block: proc do |value|
|
24
|
+
v = File.expand_path(value.to_s)
|
25
|
+
UI.user_error!("Workspace file not found at path '#{v}'") unless File.exist?(v)
|
26
|
+
UI.user_error!("Workspace file invalid") unless File.directory?(v)
|
27
|
+
UI.user_error!("Workspace file is not a workspace, must end with .xcworkspace") unless v.include?(".xcworkspace")
|
28
|
+
end),
|
29
|
+
FastlaneCore::ConfigItem.new(key: :project,
|
30
|
+
short_option: "-p",
|
31
|
+
optional: true,
|
32
|
+
env_name: "SCAN_PROJECT",
|
33
|
+
description: "Path to the project file",
|
34
|
+
verify_block: proc do |value|
|
35
|
+
v = File.expand_path(value.to_s)
|
36
|
+
UI.user_error!("Project file not found at path '#{v}'") unless File.exist?(v)
|
37
|
+
UI.user_error!("Project file invalid") unless File.directory?(v)
|
38
|
+
UI.user_error!("Project file is not a project file, must end with .xcodeproj") unless v.include?(".xcodeproj")
|
39
|
+
end),
|
40
|
+
FastlaneCore::ConfigItem.new(key: :scheme,
|
41
|
+
short_option: "-s",
|
42
|
+
optional: true,
|
43
|
+
env_name: "SCAN_SCHEME",
|
44
|
+
description: "The project's scheme. Make sure it's marked as `Shared`"),
|
45
|
+
|
46
|
+
# device (simulator) to use for testing
|
47
|
+
FastlaneCore::ConfigItem.new(key: :device,
|
48
|
+
short_option: "-a",
|
49
|
+
optional: true,
|
50
|
+
is_string: true,
|
51
|
+
env_name: "SCAN_DEVICE",
|
52
|
+
description: "The name of the simulator type you want to run tests on (e.g. 'iPhone 6')",
|
53
|
+
conflicting_options: [:devices],
|
54
|
+
conflict_block: proc do |value|
|
55
|
+
UI.user_error!("You can't use 'device' and 'devices' options in one run")
|
56
|
+
end),
|
57
|
+
FastlaneCore::ConfigItem.new(key: :devices,
|
58
|
+
optional: true,
|
59
|
+
is_string: false,
|
60
|
+
env_name: "SCAN_DEVICES",
|
61
|
+
type: Array,
|
62
|
+
description: "Array of devices to run the tests on (e.g. ['iPhone 6', 'iPad Air'])",
|
63
|
+
conflicting_options: [:device],
|
64
|
+
conflict_block: proc do |value|
|
65
|
+
UI.user_error!("You can't use 'device' and 'devices' options in one run")
|
66
|
+
end),
|
67
|
+
FastlaneCore::ConfigItem.new(key: :skip_detect_devices,
|
68
|
+
description: "Should skip auto detecting of devices if none were specified",
|
69
|
+
default_value: false,
|
70
|
+
type: Boolean,
|
71
|
+
optional: true),
|
72
|
+
|
73
|
+
# simulator management
|
74
|
+
FastlaneCore::ConfigItem.new(key: :force_quit_simulator,
|
75
|
+
env_name: 'SCAN_FORCE_QUIT_SIMULATOR',
|
76
|
+
description: "Enabling this option will automatically killall Simulator processes before the run",
|
77
|
+
default_value: false,
|
78
|
+
type: Boolean),
|
79
|
+
FastlaneCore::ConfigItem.new(key: :reset_simulator,
|
80
|
+
env_name: 'SCAN_RESET_SIMULATOR',
|
81
|
+
description: "Enabling this option will automatically erase the simulator before running the application",
|
82
|
+
default_value: false,
|
83
|
+
type: Boolean),
|
84
|
+
FastlaneCore::ConfigItem.new(key: :prelaunch_simulator,
|
85
|
+
env_name: 'SCAN_PRELAUNCH_SIMULATOR',
|
86
|
+
description: "Enabling this option will launch the first simulator prior to calling any xcodebuild command",
|
87
|
+
default_value: ENV['FASTLANE_EXPLICIT_OPEN_SIMULATOR'],
|
88
|
+
optional: true,
|
89
|
+
type: Boolean),
|
90
|
+
FastlaneCore::ConfigItem.new(key: :reinstall_app,
|
91
|
+
env_name: 'SCAN_REINSTALL_APP',
|
92
|
+
description: "Enabling this option will automatically uninstall the application before running it",
|
93
|
+
default_value: false,
|
94
|
+
type: Boolean),
|
95
|
+
FastlaneCore::ConfigItem.new(key: :app_identifier,
|
96
|
+
env_name: 'SCAN_APP_IDENTIFIER',
|
97
|
+
optional: true,
|
98
|
+
description: "The bundle identifier of the app to uninstall (only needed when enabling reinstall_app)",
|
99
|
+
code_gen_sensitive: true,
|
100
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier),
|
101
|
+
default_value_dynamic: true),
|
102
|
+
|
103
|
+
# tests to run
|
104
|
+
FastlaneCore::ConfigItem.new(key: :only_testing,
|
105
|
+
env_name: "SCAN_ONLY_TESTING",
|
106
|
+
description: "Array of strings matching Test Bundle/Test Suite/Test Cases to run",
|
107
|
+
optional: true,
|
108
|
+
is_string: false,
|
109
|
+
verify_block: proc do |value|
|
110
|
+
verify_type('only_testing', [Array, String], value)
|
111
|
+
end),
|
112
|
+
FastlaneCore::ConfigItem.new(key: :skip_testing,
|
113
|
+
env_name: "SCAN_SKIP_TESTING",
|
114
|
+
description: "Array of strings matching Test Bundle/Test Suite/Test Cases to skip",
|
115
|
+
optional: true,
|
116
|
+
is_string: false,
|
117
|
+
verify_block: proc do |value|
|
118
|
+
verify_type('skip_testing', [Array, String], value)
|
119
|
+
end),
|
120
|
+
|
121
|
+
# other test options
|
122
|
+
FastlaneCore::ConfigItem.new(key: :xctestrun,
|
123
|
+
short_option: "-X",
|
124
|
+
env_name: "SCAN_XCTESTRUN",
|
125
|
+
description: "Run tests using the provided `.xctestrun` file",
|
126
|
+
conflicting_options: [:build_for_testing],
|
127
|
+
is_string: true,
|
128
|
+
optional: true),
|
129
|
+
FastlaneCore::ConfigItem.new(key: :toolchain,
|
130
|
+
env_name: "SCAN_TOOLCHAIN",
|
131
|
+
conflicting_options: [:xctestrun],
|
132
|
+
description: "The toolchain that should be used for building the application (e.g. `com.apple.dt.toolchain.Swift_2_3, org.swift.30p620160816a`)",
|
133
|
+
optional: true,
|
134
|
+
is_string: false),
|
135
|
+
FastlaneCore::ConfigItem.new(key: :clean,
|
136
|
+
short_option: "-c",
|
137
|
+
env_name: "SCAN_CLEAN",
|
138
|
+
description: "Should the project be cleaned before building it?",
|
139
|
+
is_string: false,
|
140
|
+
default_value: false),
|
141
|
+
FastlaneCore::ConfigItem.new(key: :code_coverage,
|
142
|
+
env_name: "SCAN_CODE_COVERAGE",
|
143
|
+
description: "Should code coverage be generated? (Xcode 7 and up)",
|
144
|
+
is_string: false,
|
145
|
+
type: Boolean,
|
146
|
+
optional: true),
|
147
|
+
FastlaneCore::ConfigItem.new(key: :address_sanitizer,
|
148
|
+
description: "Should the address sanitizer be turned on?",
|
149
|
+
is_string: false,
|
150
|
+
type: Boolean,
|
151
|
+
optional: true,
|
152
|
+
conflicting_options: [:thread_sanitizer],
|
153
|
+
conflict_block: proc do |value|
|
154
|
+
UI.user_error!("You can't use 'address_sanitizer' and 'thread_sanitizer' options in one run")
|
155
|
+
end),
|
156
|
+
FastlaneCore::ConfigItem.new(key: :thread_sanitizer,
|
157
|
+
description: "Should the thread sanitizer be turned on?",
|
158
|
+
is_string: false,
|
159
|
+
type: Boolean,
|
160
|
+
optional: true,
|
161
|
+
conflicting_options: [:address_sanitizer],
|
162
|
+
conflict_block: proc do |value|
|
163
|
+
UI.user_error!("You can't use 'thread_sanitizer' and 'address_sanitizer' options in one run")
|
164
|
+
end),
|
165
|
+
|
166
|
+
# output
|
167
|
+
FastlaneCore::ConfigItem.new(key: :open_report,
|
168
|
+
short_option: "-g",
|
169
|
+
env_name: "SCAN_OPEN_REPORT",
|
170
|
+
description: "Should the HTML report be opened when tests are completed?",
|
171
|
+
is_string: false,
|
172
|
+
default_value: false),
|
173
|
+
FastlaneCore::ConfigItem.new(key: :output_directory,
|
174
|
+
short_option: "-o",
|
175
|
+
env_name: "SCAN_OUTPUT_DIRECTORY",
|
176
|
+
description: "The directory in which all reports will be stored",
|
177
|
+
code_gen_sensitive: true,
|
178
|
+
code_gen_default_value: "./test_output",
|
179
|
+
default_value: File.join(containing, "test_output"),
|
180
|
+
default_value_dynamic: true),
|
181
|
+
FastlaneCore::ConfigItem.new(key: :output_style,
|
182
|
+
short_option: "-b",
|
183
|
+
env_name: "SCAN_OUTPUT_STYLE",
|
184
|
+
description: "Define how the output should look like. Valid values are: standard, basic, rspec, or raw (disables xcpretty)",
|
185
|
+
optional: true,
|
186
|
+
verify_block: proc do |value|
|
187
|
+
UI.user_error!("Invalid output_style #{value}") unless ['standard', 'basic', 'rspec', 'raw'].include?(value)
|
188
|
+
end),
|
189
|
+
FastlaneCore::ConfigItem.new(key: :output_types,
|
190
|
+
short_option: "-f",
|
191
|
+
env_name: "SCAN_OUTPUT_TYPES",
|
192
|
+
description: "Comma separated list of the output types (e.g. html, junit, json-compilation-database)",
|
193
|
+
default_value: "html,junit"),
|
194
|
+
FastlaneCore::ConfigItem.new(key: :output_files,
|
195
|
+
env_name: "SCAN_OUTPUT_FILES",
|
196
|
+
description: "Comma separated list of the output files, corresponding to the types provided by :output_types (order should match). If specifying an output type of json-compilation-database with :use_clang_report_name enabled, that option will take precedence",
|
197
|
+
conflicting_options: [:custom_report_file_name],
|
198
|
+
optional: true,
|
199
|
+
default_value: nil),
|
200
|
+
FastlaneCore::ConfigItem.new(key: :buildlog_path,
|
201
|
+
short_option: "-l",
|
202
|
+
env_name: "SCAN_BUILDLOG_PATH",
|
203
|
+
description: "The directory where to store the raw log",
|
204
|
+
default_value: "#{FastlaneCore::Helper.buildlog_path}/scan",
|
205
|
+
default_value_dynamic: true),
|
206
|
+
FastlaneCore::ConfigItem.new(key: :include_simulator_logs,
|
207
|
+
env_name: "SCAN_INCLUDE_SIMULATOR_LOGS",
|
208
|
+
description: "If the logs generated by the app (e.g. using NSLog, perror, etc.) in the Simulator should be written to the output_directory",
|
209
|
+
type: Boolean,
|
210
|
+
default_value: false,
|
211
|
+
optional: true),
|
212
|
+
FastlaneCore::ConfigItem.new(key: :suppress_xcode_output,
|
213
|
+
env_name: "SCAN_SUPPRESS_XCODE_OUTPUT",
|
214
|
+
description: "Suppress the output of xcodebuild to stdout. Output is still saved in buildlog_path",
|
215
|
+
optional: true,
|
216
|
+
is_string: false),
|
217
|
+
FastlaneCore::ConfigItem.new(key: :formatter,
|
218
|
+
short_option: "-n",
|
219
|
+
env_name: "SCAN_FORMATTER",
|
220
|
+
description: "A custom xcpretty formatter to use",
|
221
|
+
optional: true),
|
222
|
+
FastlaneCore::ConfigItem.new(key: :xcpretty_args,
|
223
|
+
env_name: "SCAN_XCPRETTY_ARGS",
|
224
|
+
description: "Pass in xcpretty additional command line arguments (e.g. '--test --no-color' or '--tap --no-utf')",
|
225
|
+
type: String,
|
226
|
+
optional: true),
|
227
|
+
FastlaneCore::ConfigItem.new(key: :derived_data_path,
|
228
|
+
short_option: "-j",
|
229
|
+
env_name: "SCAN_DERIVED_DATA_PATH",
|
230
|
+
description: "The directory where build products and other derived data will go",
|
231
|
+
optional: true),
|
232
|
+
FastlaneCore::ConfigItem.new(key: :should_zip_build_products,
|
233
|
+
short_option: "-Z",
|
234
|
+
env_name: "SCAN_SHOULD_ZIP_BUILD_PRODUCTS",
|
235
|
+
description: "Should zip the derived data build products and place in output path?",
|
236
|
+
optional: true,
|
237
|
+
is_string: false,
|
238
|
+
default_value: false),
|
239
|
+
FastlaneCore::ConfigItem.new(key: :result_bundle,
|
240
|
+
short_option: "-z",
|
241
|
+
env_name: "SCAN_RESULT_BUNDLE",
|
242
|
+
is_string: false,
|
243
|
+
description: "Should an Xcode result bundle be generated in the output directory",
|
244
|
+
default_value: false,
|
245
|
+
optional: true),
|
246
|
+
FastlaneCore::ConfigItem.new(key: :use_clang_report_name,
|
247
|
+
description: "Generate the json compilation database with clang naming convention (compile_commands.json)",
|
248
|
+
is_string: false,
|
249
|
+
default_value: false),
|
250
|
+
|
251
|
+
# concurrency
|
252
|
+
FastlaneCore::ConfigItem.new(key: :max_concurrent_simulators,
|
253
|
+
type: Integer,
|
254
|
+
env_name: "SCAN_MAX_CONCURRENT_SIMULATORS",
|
255
|
+
description: "Constrain the number of simulator devices on which to test concurrently. Equivalent to -maximum-concurrent-test-simulator-destinations",
|
256
|
+
optional: true),
|
257
|
+
FastlaneCore::ConfigItem.new(key: :disable_concurrent_testing,
|
258
|
+
type: Boolean,
|
259
|
+
default_value: false,
|
260
|
+
env_name: "SCAN_DISABLE_CONCURRENT_TESTING",
|
261
|
+
description: "Do not run test bundles in parallel on the specified destinations. Testing will occur on each destination serially. Equivalent to -disable-concurrent-testing",
|
262
|
+
optional: true),
|
263
|
+
|
264
|
+
# build
|
265
|
+
FastlaneCore::ConfigItem.new(key: :skip_build,
|
266
|
+
description: "Should debug build be skipped before test build?",
|
267
|
+
short_option: "-r",
|
268
|
+
env_name: "SCAN_SKIP_BUILD",
|
269
|
+
is_string: false,
|
270
|
+
type: Boolean,
|
271
|
+
default_value: false),
|
272
|
+
FastlaneCore::ConfigItem.new(key: :test_without_building,
|
273
|
+
short_option: "-T",
|
274
|
+
env_name: "SCAN_TEST_WITHOUT_BUILDING",
|
275
|
+
description: "Test without building, requires a derived data path",
|
276
|
+
is_string: false,
|
277
|
+
type: Boolean,
|
278
|
+
conflicting_options: [:build_for_testing],
|
279
|
+
optional: true),
|
280
|
+
FastlaneCore::ConfigItem.new(key: :build_for_testing,
|
281
|
+
short_option: "-B",
|
282
|
+
env_name: "SCAN_BUILD_FOR_TESTING",
|
283
|
+
description: "Build for testing only, does not run tests",
|
284
|
+
conflicting_options: [:test_without_building],
|
285
|
+
is_string: false,
|
286
|
+
type: Boolean,
|
287
|
+
optional: true),
|
288
|
+
FastlaneCore::ConfigItem.new(key: :sdk,
|
289
|
+
short_option: "-k",
|
290
|
+
env_name: "SCAN_SDK",
|
291
|
+
description: "The SDK that should be used for building the application",
|
292
|
+
optional: true),
|
293
|
+
FastlaneCore::ConfigItem.new(key: :configuration,
|
294
|
+
short_option: "-q",
|
295
|
+
env_name: "SCAN_CONFIGURATION",
|
296
|
+
description: "The configuration to use when building the app. Defaults to 'Release'",
|
297
|
+
default_value_dynamic: true,
|
298
|
+
optional: true),
|
299
|
+
FastlaneCore::ConfigItem.new(key: :xcargs,
|
300
|
+
short_option: "-x",
|
301
|
+
env_name: "SCAN_XCARGS",
|
302
|
+
description: "Pass additional arguments to xcodebuild. Be sure to quote the setting names and values e.g. OTHER_LDFLAGS=\"-ObjC -lstdc++\"",
|
303
|
+
optional: true,
|
304
|
+
type: :shell_string),
|
305
|
+
FastlaneCore::ConfigItem.new(key: :xcconfig,
|
306
|
+
short_option: "-y",
|
307
|
+
env_name: "SCAN_XCCONFIG",
|
308
|
+
description: "Use an extra XCCONFIG file to build your app",
|
309
|
+
optional: true,
|
310
|
+
verify_block: proc do |value|
|
311
|
+
UI.user_error!("File not found at path '#{File.expand_path(value)}'") unless File.exist?(value)
|
312
|
+
end),
|
313
|
+
|
314
|
+
# slack
|
315
|
+
FastlaneCore::ConfigItem.new(key: :slack_url,
|
316
|
+
short_option: "-i",
|
317
|
+
env_name: "SLACK_URL",
|
318
|
+
sensitive: true,
|
319
|
+
description: "Create an Incoming WebHook for your Slack group to post results there",
|
320
|
+
optional: true,
|
321
|
+
verify_block: proc do |value|
|
322
|
+
if !value.to_s.empty? && !value.start_with?("https://")
|
323
|
+
UI.user_error!("Invalid URL, must start with https://")
|
324
|
+
end
|
325
|
+
end),
|
326
|
+
FastlaneCore::ConfigItem.new(key: :slack_channel,
|
327
|
+
short_option: "-e",
|
328
|
+
env_name: "SCAN_SLACK_CHANNEL",
|
329
|
+
description: "#channel or @username",
|
330
|
+
optional: true),
|
331
|
+
FastlaneCore::ConfigItem.new(key: :slack_message,
|
332
|
+
short_option: "-m",
|
333
|
+
env_name: "SCAN_SLACK_MESSAGE",
|
334
|
+
description: "The message included with each message posted to slack",
|
335
|
+
optional: true),
|
336
|
+
FastlaneCore::ConfigItem.new(key: :slack_use_webhook_configured_username_and_icon,
|
337
|
+
env_name: "SCAN_SLACK_USE_WEBHOOK_CONFIGURED_USERNAME_AND_ICON",
|
338
|
+
description: "Use webhook's default username and icon settings? (true/false)",
|
339
|
+
default_value: false,
|
340
|
+
type: Boolean,
|
341
|
+
optional: true),
|
342
|
+
FastlaneCore::ConfigItem.new(key: :slack_username,
|
343
|
+
env_name: "SCAN_SLACK_USERNAME",
|
344
|
+
description: "Overrides the webhook's username property if slack_use_webhook_configured_username_and_icon is false",
|
345
|
+
default_value: "fastlane",
|
346
|
+
is_string: true,
|
347
|
+
optional: true),
|
348
|
+
FastlaneCore::ConfigItem.new(key: :slack_icon_url,
|
349
|
+
env_name: "SCAN_SLACK_ICON_URL",
|
350
|
+
description: "Overrides the webhook's image property if slack_use_webhook_configured_username_and_icon is false",
|
351
|
+
default_value: "https://s3-eu-west-1.amazonaws.com/fastlane.tools/fastlane.png",
|
352
|
+
is_string: true,
|
353
|
+
optional: true),
|
354
|
+
FastlaneCore::ConfigItem.new(key: :skip_slack,
|
355
|
+
env_name: "SCAN_SKIP_SLACK",
|
356
|
+
description: "Don't publish to slack, even when an URL is given",
|
357
|
+
is_string: false,
|
358
|
+
default_value: false),
|
359
|
+
FastlaneCore::ConfigItem.new(key: :slack_only_on_failure,
|
360
|
+
env_name: "SCAN_SLACK_ONLY_ON_FAILURE",
|
361
|
+
description: "Only post on Slack if the tests fail",
|
362
|
+
is_string: false,
|
363
|
+
default_value: false),
|
364
|
+
|
365
|
+
# misc
|
366
|
+
FastlaneCore::ConfigItem.new(key: :destination,
|
367
|
+
short_option: "-d",
|
368
|
+
env_name: "SCAN_DESTINATION",
|
369
|
+
description: "Use only if you're a pro, use the other options instead",
|
370
|
+
is_string: false,
|
371
|
+
optional: true),
|
372
|
+
FastlaneCore::ConfigItem.new(key: :custom_report_file_name,
|
373
|
+
env_name: "SCAN_CUSTOM_REPORT_FILE_NAME",
|
374
|
+
description: "Sets custom full report file name when generating a single report",
|
375
|
+
deprecated: "Use `--output_files` instead",
|
376
|
+
conflicting_options: [:output_files],
|
377
|
+
optional: true,
|
378
|
+
is_string: true),
|
379
|
+
FastlaneCore::ConfigItem.new(key: :xcodebuild_command,
|
380
|
+
env_name: "GYM_XCODE_BUILD_COMMAND",
|
381
|
+
description: "Allows for override of the default `xcodebuild` command",
|
382
|
+
type: String,
|
383
|
+
optional: true,
|
384
|
+
default_value: "env NSUnbufferedIO=YES xcodebuild")
|
385
|
+
|
386
|
+
]
|
387
|
+
end
|
388
|
+
end
|
389
|
+
# rubocop:enable Metrics/ClassLength
|
390
|
+
end
|
@@ -0,0 +1,173 @@
|
|
1
|
+
require 'open3'
|
2
|
+
require 'fileutils'
|
3
|
+
require 'terminal-table'
|
4
|
+
require 'shellwords'
|
5
|
+
|
6
|
+
require 'fastlane_core/env'
|
7
|
+
require 'fastlane_core/device_manager'
|
8
|
+
require_relative 'module'
|
9
|
+
require_relative 'xcpretty_reporter_options_generator'
|
10
|
+
require_relative 'test_result_parser'
|
11
|
+
require_relative 'slack_poster'
|
12
|
+
require_relative 'test_command_generator'
|
13
|
+
require_relative 'error_handler'
|
14
|
+
|
15
|
+
module Scan
|
16
|
+
class Runner
|
17
|
+
def initialize
|
18
|
+
@test_command_generator = TestCommandGenerator.new
|
19
|
+
end
|
20
|
+
|
21
|
+
def run
|
22
|
+
handle_results(test_app)
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_app
|
26
|
+
force_quit_simulator_processes if Scan.config[:force_quit_simulator]
|
27
|
+
|
28
|
+
if Scan.config[:reset_simulator]
|
29
|
+
Scan.devices.each do |device|
|
30
|
+
FastlaneCore::Simulator.reset(udid: device.udid)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
# We call this method, to be sure that all other simulators are killed
|
35
|
+
# And a correct one is freshly launched. Switching between multiple simulator
|
36
|
+
# in case the user specified multiple targets works with no issues
|
37
|
+
# This way it's okay to just call it for the first simulator we're using for
|
38
|
+
# the first test run
|
39
|
+
FastlaneCore::Simulator.launch(Scan.devices.first) if Scan.devices && Scan.config[:prelaunch_simulator]
|
40
|
+
|
41
|
+
if Scan.config[:reinstall_app]
|
42
|
+
app_identifier = Scan.config[:app_identifier]
|
43
|
+
app_identifier ||= UI.input("App Identifier: ")
|
44
|
+
|
45
|
+
Scan.devices.each do |device|
|
46
|
+
FastlaneCore::Simulator.uninstall_app(app_identifier, device.name, device.udid)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
command = @test_command_generator.generate
|
51
|
+
prefix_hash = [
|
52
|
+
{
|
53
|
+
prefix: "Running Tests: ",
|
54
|
+
block: proc do |value|
|
55
|
+
value.include?("Touching")
|
56
|
+
end
|
57
|
+
}
|
58
|
+
]
|
59
|
+
exit_status = 0
|
60
|
+
|
61
|
+
FastlaneCore::CommandExecutor.execute(command: command,
|
62
|
+
print_all: true,
|
63
|
+
print_command: true,
|
64
|
+
prefix: prefix_hash,
|
65
|
+
loading: "Loading...",
|
66
|
+
suppress_output: Scan.config[:suppress_xcode_output],
|
67
|
+
error: proc do |error_output|
|
68
|
+
begin
|
69
|
+
exit_status = $?.exitstatus
|
70
|
+
ErrorHandler.handle_build_error(error_output)
|
71
|
+
rescue => ex
|
72
|
+
SlackPoster.new.run({
|
73
|
+
build_errors: 1
|
74
|
+
})
|
75
|
+
raise ex
|
76
|
+
end
|
77
|
+
end)
|
78
|
+
exit_status
|
79
|
+
end
|
80
|
+
|
81
|
+
def handle_results(tests_exit_status)
|
82
|
+
result = TestResultParser.new.parse_result(test_results)
|
83
|
+
SlackPoster.new.run(result)
|
84
|
+
|
85
|
+
if result[:failures] > 0
|
86
|
+
failures_str = result[:failures].to_s.red
|
87
|
+
else
|
88
|
+
failures_str = result[:failures].to_s.green
|
89
|
+
end
|
90
|
+
|
91
|
+
puts(Terminal::Table.new({
|
92
|
+
title: "Test Results",
|
93
|
+
rows: [
|
94
|
+
["Number of tests", result[:tests]],
|
95
|
+
["Number of failures", failures_str]
|
96
|
+
]
|
97
|
+
}))
|
98
|
+
puts("")
|
99
|
+
|
100
|
+
copy_simulator_logs
|
101
|
+
zip_build_products
|
102
|
+
|
103
|
+
if result[:failures] > 0
|
104
|
+
open_report
|
105
|
+
|
106
|
+
UI.test_failure!("Tests have failed")
|
107
|
+
end
|
108
|
+
|
109
|
+
unless tests_exit_status == 0
|
110
|
+
UI.test_failure!("Test execution failed. Exit status: #{tests_exit_status}")
|
111
|
+
end
|
112
|
+
|
113
|
+
open_report
|
114
|
+
end
|
115
|
+
|
116
|
+
def open_report
|
117
|
+
if !Helper.ci? && Scan.cache[:open_html_report_path]
|
118
|
+
`open --hide '#{Scan.cache[:open_html_report_path]}'`
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
def zip_build_products
|
123
|
+
return unless Scan.config[:should_zip_build_products]
|
124
|
+
|
125
|
+
# Gets :derived_data_path/Build/Products directory for zipping zip
|
126
|
+
derived_data_path = Scan.config[:derived_data_path]
|
127
|
+
path = File.join(derived_data_path, "Build/Products")
|
128
|
+
|
129
|
+
# Gets absolute path of output directory
|
130
|
+
output_directory = File.absolute_path(Scan.config[:output_directory])
|
131
|
+
output_path = File.join(output_directory, "build_products.zip")
|
132
|
+
|
133
|
+
# Caching path for action to put into lane_context
|
134
|
+
Scan.cache[:zip_build_products_path] = output_path
|
135
|
+
|
136
|
+
# Zips build products and moves it to output directory
|
137
|
+
UI.message("Zipping build products")
|
138
|
+
FastlaneCore::Helper.zip_directory(path, output_path, contents_only: true, overwrite: true, print: false)
|
139
|
+
UI.message("Succesfully zipped build products: #{output_path}")
|
140
|
+
end
|
141
|
+
|
142
|
+
def test_results
|
143
|
+
temp_junit_report = Scan.cache[:temp_junit_report]
|
144
|
+
return File.read(temp_junit_report) if temp_junit_report && File.file?(temp_junit_report)
|
145
|
+
|
146
|
+
# Something went wrong with the temp junit report for the test success/failures count.
|
147
|
+
# We'll have to regenerate from the xcodebuild log, like we did before version 2.34.0.
|
148
|
+
UI.message("Generating test results. This may take a while for large projects.")
|
149
|
+
|
150
|
+
reporter_options_generator = XCPrettyReporterOptionsGenerator.new(false, [], [], "", false, nil)
|
151
|
+
reporter_options = reporter_options_generator.generate_reporter_options
|
152
|
+
xcpretty_args_options = reporter_options_generator.generate_xcpretty_args_options
|
153
|
+
cmd = "cat #{@test_command_generator.xcodebuild_log_path.shellescape} | xcpretty #{reporter_options.join(' ')} #{xcpretty_args_options} &> /dev/null"
|
154
|
+
system(cmd)
|
155
|
+
File.read(Scan.cache[:temp_junit_report])
|
156
|
+
end
|
157
|
+
|
158
|
+
def copy_simulator_logs
|
159
|
+
return unless Scan.config[:include_simulator_logs]
|
160
|
+
|
161
|
+
UI.header("Collecting system logs")
|
162
|
+
Scan.devices.each do |device|
|
163
|
+
log_identity = "#{device.name}_#{device.os_type}_#{device.os_version}"
|
164
|
+
FastlaneCore::Simulator.copy_logs(device, log_identity, Scan.config[:output_directory])
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
def force_quit_simulator_processes
|
169
|
+
# Silently execute and kill, verbose flags will show this command occurring
|
170
|
+
Fastlane::Actions.sh("killall Simulator &> /dev/null || true", log: false)
|
171
|
+
end
|
172
|
+
end
|
173
|
+
end
|