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
metadata
ADDED
@@ -0,0 +1,1909 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fastlane_pricing_fix
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.212.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Roger Oba
|
8
|
+
- Manish Rathi
|
9
|
+
- Helmut Januschka
|
10
|
+
- Stefan Natchev
|
11
|
+
- Joshua Liebowitz
|
12
|
+
- Kohki Miki
|
13
|
+
- Jimmy Dee
|
14
|
+
- Jorge Revuelta H
|
15
|
+
- Andrew McBurney
|
16
|
+
- Satoshi Namai
|
17
|
+
- Josh Holtz
|
18
|
+
- Fumiya Nakamura
|
19
|
+
- Danielle Tomlinson
|
20
|
+
- Łukasz Grabowski
|
21
|
+
- Luka Mirosevic
|
22
|
+
- Felix Krause
|
23
|
+
- Jérôme Lacoste
|
24
|
+
- Max Ott
|
25
|
+
- Manu Wallner
|
26
|
+
- Aaron Brager
|
27
|
+
- Maksym Grebenets
|
28
|
+
- Daniel Jankowski
|
29
|
+
- Olivier Halligon
|
30
|
+
- Iulian Onofrei
|
31
|
+
- Matthew Ellis
|
32
|
+
- Jan Piotrowski
|
33
|
+
autorequire:
|
34
|
+
bindir: bin
|
35
|
+
cert_chain: []
|
36
|
+
date: 2023-03-29 00:00:00.000000000 Z
|
37
|
+
dependencies:
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: xcodeproj
|
40
|
+
requirement: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 1.13.0
|
45
|
+
- - "<"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.0.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.13.0
|
55
|
+
- - "<"
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 2.0.0
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: xcpretty
|
60
|
+
requirement: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - "~>"
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 0.3.0
|
65
|
+
type: :runtime
|
66
|
+
prerelease: false
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - "~>"
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: 0.3.0
|
72
|
+
- !ruby/object:Gem::Dependency
|
73
|
+
name: terminal-notifier
|
74
|
+
requirement: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 2.0.0
|
79
|
+
- - "<"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: 3.0.0
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 2.0.0
|
89
|
+
- - "<"
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: 3.0.0
|
92
|
+
- !ruby/object:Gem::Dependency
|
93
|
+
name: terminal-table
|
94
|
+
requirement: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: 1.4.5
|
99
|
+
- - "<"
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: 2.0.0
|
102
|
+
type: :runtime
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: 1.4.5
|
109
|
+
- - "<"
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: 2.0.0
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: plist
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: 3.1.0
|
119
|
+
- - "<"
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: 4.0.0
|
122
|
+
type: :runtime
|
123
|
+
prerelease: false
|
124
|
+
version_requirements: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - ">="
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: 3.1.0
|
129
|
+
- - "<"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 4.0.0
|
132
|
+
- !ruby/object:Gem::Dependency
|
133
|
+
name: CFPropertyList
|
134
|
+
requirement: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '2.3'
|
139
|
+
- - "<"
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: 4.0.0
|
142
|
+
type: :runtime
|
143
|
+
prerelease: false
|
144
|
+
version_requirements: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '2.3'
|
149
|
+
- - "<"
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: 4.0.0
|
152
|
+
- !ruby/object:Gem::Dependency
|
153
|
+
name: addressable
|
154
|
+
requirement: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - ">="
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '2.8'
|
159
|
+
- - "<"
|
160
|
+
- !ruby/object:Gem::Version
|
161
|
+
version: 3.0.0
|
162
|
+
type: :runtime
|
163
|
+
prerelease: false
|
164
|
+
version_requirements: !ruby/object:Gem::Requirement
|
165
|
+
requirements:
|
166
|
+
- - ">="
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
version: '2.8'
|
169
|
+
- - "<"
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
version: 3.0.0
|
172
|
+
- !ruby/object:Gem::Dependency
|
173
|
+
name: multipart-post
|
174
|
+
requirement: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - "~>"
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: 2.0.0
|
179
|
+
type: :runtime
|
180
|
+
prerelease: false
|
181
|
+
version_requirements: !ruby/object:Gem::Requirement
|
182
|
+
requirements:
|
183
|
+
- - "~>"
|
184
|
+
- !ruby/object:Gem::Version
|
185
|
+
version: 2.0.0
|
186
|
+
- !ruby/object:Gem::Dependency
|
187
|
+
name: word_wrap
|
188
|
+
requirement: !ruby/object:Gem::Requirement
|
189
|
+
requirements:
|
190
|
+
- - "~>"
|
191
|
+
- !ruby/object:Gem::Version
|
192
|
+
version: 1.0.0
|
193
|
+
type: :runtime
|
194
|
+
prerelease: false
|
195
|
+
version_requirements: !ruby/object:Gem::Requirement
|
196
|
+
requirements:
|
197
|
+
- - "~>"
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: 1.0.0
|
200
|
+
- !ruby/object:Gem::Dependency
|
201
|
+
name: optparse
|
202
|
+
requirement: !ruby/object:Gem::Requirement
|
203
|
+
requirements:
|
204
|
+
- - "~>"
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: 0.1.1
|
207
|
+
type: :runtime
|
208
|
+
prerelease: false
|
209
|
+
version_requirements: !ruby/object:Gem::Requirement
|
210
|
+
requirements:
|
211
|
+
- - "~>"
|
212
|
+
- !ruby/object:Gem::Version
|
213
|
+
version: 0.1.1
|
214
|
+
- !ruby/object:Gem::Dependency
|
215
|
+
name: tty-screen
|
216
|
+
requirement: !ruby/object:Gem::Requirement
|
217
|
+
requirements:
|
218
|
+
- - ">="
|
219
|
+
- !ruby/object:Gem::Version
|
220
|
+
version: 0.6.3
|
221
|
+
- - "<"
|
222
|
+
- !ruby/object:Gem::Version
|
223
|
+
version: 1.0.0
|
224
|
+
type: :runtime
|
225
|
+
prerelease: false
|
226
|
+
version_requirements: !ruby/object:Gem::Requirement
|
227
|
+
requirements:
|
228
|
+
- - ">="
|
229
|
+
- !ruby/object:Gem::Version
|
230
|
+
version: 0.6.3
|
231
|
+
- - "<"
|
232
|
+
- !ruby/object:Gem::Version
|
233
|
+
version: 1.0.0
|
234
|
+
- !ruby/object:Gem::Dependency
|
235
|
+
name: tty-spinner
|
236
|
+
requirement: !ruby/object:Gem::Requirement
|
237
|
+
requirements:
|
238
|
+
- - ">="
|
239
|
+
- !ruby/object:Gem::Version
|
240
|
+
version: 0.8.0
|
241
|
+
- - "<"
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: 1.0.0
|
244
|
+
type: :runtime
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - ">="
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: 0.8.0
|
251
|
+
- - "<"
|
252
|
+
- !ruby/object:Gem::Version
|
253
|
+
version: 1.0.0
|
254
|
+
- !ruby/object:Gem::Dependency
|
255
|
+
name: artifactory
|
256
|
+
requirement: !ruby/object:Gem::Requirement
|
257
|
+
requirements:
|
258
|
+
- - "~>"
|
259
|
+
- !ruby/object:Gem::Version
|
260
|
+
version: '3.0'
|
261
|
+
type: :runtime
|
262
|
+
prerelease: false
|
263
|
+
version_requirements: !ruby/object:Gem::Requirement
|
264
|
+
requirements:
|
265
|
+
- - "~>"
|
266
|
+
- !ruby/object:Gem::Version
|
267
|
+
version: '3.0'
|
268
|
+
- !ruby/object:Gem::Dependency
|
269
|
+
name: babosa
|
270
|
+
requirement: !ruby/object:Gem::Requirement
|
271
|
+
requirements:
|
272
|
+
- - ">="
|
273
|
+
- !ruby/object:Gem::Version
|
274
|
+
version: 1.0.3
|
275
|
+
- - "<"
|
276
|
+
- !ruby/object:Gem::Version
|
277
|
+
version: 2.0.0
|
278
|
+
type: :runtime
|
279
|
+
prerelease: false
|
280
|
+
version_requirements: !ruby/object:Gem::Requirement
|
281
|
+
requirements:
|
282
|
+
- - ">="
|
283
|
+
- !ruby/object:Gem::Version
|
284
|
+
version: 1.0.3
|
285
|
+
- - "<"
|
286
|
+
- !ruby/object:Gem::Version
|
287
|
+
version: 2.0.0
|
288
|
+
- !ruby/object:Gem::Dependency
|
289
|
+
name: colored
|
290
|
+
requirement: !ruby/object:Gem::Requirement
|
291
|
+
requirements:
|
292
|
+
- - ">="
|
293
|
+
- !ruby/object:Gem::Version
|
294
|
+
version: '0'
|
295
|
+
type: :runtime
|
296
|
+
prerelease: false
|
297
|
+
version_requirements: !ruby/object:Gem::Requirement
|
298
|
+
requirements:
|
299
|
+
- - ">="
|
300
|
+
- !ruby/object:Gem::Version
|
301
|
+
version: '0'
|
302
|
+
- !ruby/object:Gem::Dependency
|
303
|
+
name: commander
|
304
|
+
requirement: !ruby/object:Gem::Requirement
|
305
|
+
requirements:
|
306
|
+
- - "~>"
|
307
|
+
- !ruby/object:Gem::Version
|
308
|
+
version: '4.6'
|
309
|
+
type: :runtime
|
310
|
+
prerelease: false
|
311
|
+
version_requirements: !ruby/object:Gem::Requirement
|
312
|
+
requirements:
|
313
|
+
- - "~>"
|
314
|
+
- !ruby/object:Gem::Version
|
315
|
+
version: '4.6'
|
316
|
+
- !ruby/object:Gem::Dependency
|
317
|
+
name: excon
|
318
|
+
requirement: !ruby/object:Gem::Requirement
|
319
|
+
requirements:
|
320
|
+
- - ">="
|
321
|
+
- !ruby/object:Gem::Version
|
322
|
+
version: 0.71.0
|
323
|
+
- - "<"
|
324
|
+
- !ruby/object:Gem::Version
|
325
|
+
version: 1.0.0
|
326
|
+
type: :runtime
|
327
|
+
prerelease: false
|
328
|
+
version_requirements: !ruby/object:Gem::Requirement
|
329
|
+
requirements:
|
330
|
+
- - ">="
|
331
|
+
- !ruby/object:Gem::Version
|
332
|
+
version: 0.71.0
|
333
|
+
- - "<"
|
334
|
+
- !ruby/object:Gem::Version
|
335
|
+
version: 1.0.0
|
336
|
+
- !ruby/object:Gem::Dependency
|
337
|
+
name: faraday-cookie_jar
|
338
|
+
requirement: !ruby/object:Gem::Requirement
|
339
|
+
requirements:
|
340
|
+
- - "~>"
|
341
|
+
- !ruby/object:Gem::Version
|
342
|
+
version: 0.0.6
|
343
|
+
type: :runtime
|
344
|
+
prerelease: false
|
345
|
+
version_requirements: !ruby/object:Gem::Requirement
|
346
|
+
requirements:
|
347
|
+
- - "~>"
|
348
|
+
- !ruby/object:Gem::Version
|
349
|
+
version: 0.0.6
|
350
|
+
- !ruby/object:Gem::Dependency
|
351
|
+
name: faraday
|
352
|
+
requirement: !ruby/object:Gem::Requirement
|
353
|
+
requirements:
|
354
|
+
- - "~>"
|
355
|
+
- !ruby/object:Gem::Version
|
356
|
+
version: '1.0'
|
357
|
+
type: :runtime
|
358
|
+
prerelease: false
|
359
|
+
version_requirements: !ruby/object:Gem::Requirement
|
360
|
+
requirements:
|
361
|
+
- - "~>"
|
362
|
+
- !ruby/object:Gem::Version
|
363
|
+
version: '1.0'
|
364
|
+
- !ruby/object:Gem::Dependency
|
365
|
+
name: faraday_middleware
|
366
|
+
requirement: !ruby/object:Gem::Requirement
|
367
|
+
requirements:
|
368
|
+
- - "~>"
|
369
|
+
- !ruby/object:Gem::Version
|
370
|
+
version: '1.0'
|
371
|
+
type: :runtime
|
372
|
+
prerelease: false
|
373
|
+
version_requirements: !ruby/object:Gem::Requirement
|
374
|
+
requirements:
|
375
|
+
- - "~>"
|
376
|
+
- !ruby/object:Gem::Version
|
377
|
+
version: '1.0'
|
378
|
+
- !ruby/object:Gem::Dependency
|
379
|
+
name: fastimage
|
380
|
+
requirement: !ruby/object:Gem::Requirement
|
381
|
+
requirements:
|
382
|
+
- - ">="
|
383
|
+
- !ruby/object:Gem::Version
|
384
|
+
version: 2.1.0
|
385
|
+
- - "<"
|
386
|
+
- !ruby/object:Gem::Version
|
387
|
+
version: 3.0.0
|
388
|
+
type: :runtime
|
389
|
+
prerelease: false
|
390
|
+
version_requirements: !ruby/object:Gem::Requirement
|
391
|
+
requirements:
|
392
|
+
- - ">="
|
393
|
+
- !ruby/object:Gem::Version
|
394
|
+
version: 2.1.0
|
395
|
+
- - "<"
|
396
|
+
- !ruby/object:Gem::Version
|
397
|
+
version: 3.0.0
|
398
|
+
- !ruby/object:Gem::Dependency
|
399
|
+
name: gh_inspector
|
400
|
+
requirement: !ruby/object:Gem::Requirement
|
401
|
+
requirements:
|
402
|
+
- - ">="
|
403
|
+
- !ruby/object:Gem::Version
|
404
|
+
version: 1.1.2
|
405
|
+
- - "<"
|
406
|
+
- !ruby/object:Gem::Version
|
407
|
+
version: 2.0.0
|
408
|
+
type: :runtime
|
409
|
+
prerelease: false
|
410
|
+
version_requirements: !ruby/object:Gem::Requirement
|
411
|
+
requirements:
|
412
|
+
- - ">="
|
413
|
+
- !ruby/object:Gem::Version
|
414
|
+
version: 1.1.2
|
415
|
+
- - "<"
|
416
|
+
- !ruby/object:Gem::Version
|
417
|
+
version: 2.0.0
|
418
|
+
- !ruby/object:Gem::Dependency
|
419
|
+
name: highline
|
420
|
+
requirement: !ruby/object:Gem::Requirement
|
421
|
+
requirements:
|
422
|
+
- - "~>"
|
423
|
+
- !ruby/object:Gem::Version
|
424
|
+
version: '2.0'
|
425
|
+
type: :runtime
|
426
|
+
prerelease: false
|
427
|
+
version_requirements: !ruby/object:Gem::Requirement
|
428
|
+
requirements:
|
429
|
+
- - "~>"
|
430
|
+
- !ruby/object:Gem::Version
|
431
|
+
version: '2.0'
|
432
|
+
- !ruby/object:Gem::Dependency
|
433
|
+
name: json
|
434
|
+
requirement: !ruby/object:Gem::Requirement
|
435
|
+
requirements:
|
436
|
+
- - "<"
|
437
|
+
- !ruby/object:Gem::Version
|
438
|
+
version: 3.0.0
|
439
|
+
type: :runtime
|
440
|
+
prerelease: false
|
441
|
+
version_requirements: !ruby/object:Gem::Requirement
|
442
|
+
requirements:
|
443
|
+
- - "<"
|
444
|
+
- !ruby/object:Gem::Version
|
445
|
+
version: 3.0.0
|
446
|
+
- !ruby/object:Gem::Dependency
|
447
|
+
name: mini_magick
|
448
|
+
requirement: !ruby/object:Gem::Requirement
|
449
|
+
requirements:
|
450
|
+
- - ">="
|
451
|
+
- !ruby/object:Gem::Version
|
452
|
+
version: 4.9.4
|
453
|
+
- - "<"
|
454
|
+
- !ruby/object:Gem::Version
|
455
|
+
version: 5.0.0
|
456
|
+
type: :runtime
|
457
|
+
prerelease: false
|
458
|
+
version_requirements: !ruby/object:Gem::Requirement
|
459
|
+
requirements:
|
460
|
+
- - ">="
|
461
|
+
- !ruby/object:Gem::Version
|
462
|
+
version: 4.9.4
|
463
|
+
- - "<"
|
464
|
+
- !ruby/object:Gem::Version
|
465
|
+
version: 5.0.0
|
466
|
+
- !ruby/object:Gem::Dependency
|
467
|
+
name: naturally
|
468
|
+
requirement: !ruby/object:Gem::Requirement
|
469
|
+
requirements:
|
470
|
+
- - "~>"
|
471
|
+
- !ruby/object:Gem::Version
|
472
|
+
version: '2.2'
|
473
|
+
type: :runtime
|
474
|
+
prerelease: false
|
475
|
+
version_requirements: !ruby/object:Gem::Requirement
|
476
|
+
requirements:
|
477
|
+
- - "~>"
|
478
|
+
- !ruby/object:Gem::Version
|
479
|
+
version: '2.2'
|
480
|
+
- !ruby/object:Gem::Dependency
|
481
|
+
name: rubyzip
|
482
|
+
requirement: !ruby/object:Gem::Requirement
|
483
|
+
requirements:
|
484
|
+
- - ">="
|
485
|
+
- !ruby/object:Gem::Version
|
486
|
+
version: 2.0.0
|
487
|
+
- - "<"
|
488
|
+
- !ruby/object:Gem::Version
|
489
|
+
version: 3.0.0
|
490
|
+
type: :runtime
|
491
|
+
prerelease: false
|
492
|
+
version_requirements: !ruby/object:Gem::Requirement
|
493
|
+
requirements:
|
494
|
+
- - ">="
|
495
|
+
- !ruby/object:Gem::Version
|
496
|
+
version: 2.0.0
|
497
|
+
- - "<"
|
498
|
+
- !ruby/object:Gem::Version
|
499
|
+
version: 3.0.0
|
500
|
+
- !ruby/object:Gem::Dependency
|
501
|
+
name: security
|
502
|
+
requirement: !ruby/object:Gem::Requirement
|
503
|
+
requirements:
|
504
|
+
- - '='
|
505
|
+
- !ruby/object:Gem::Version
|
506
|
+
version: 0.1.3
|
507
|
+
type: :runtime
|
508
|
+
prerelease: false
|
509
|
+
version_requirements: !ruby/object:Gem::Requirement
|
510
|
+
requirements:
|
511
|
+
- - '='
|
512
|
+
- !ruby/object:Gem::Version
|
513
|
+
version: 0.1.3
|
514
|
+
- !ruby/object:Gem::Dependency
|
515
|
+
name: xcpretty-travis-formatter
|
516
|
+
requirement: !ruby/object:Gem::Requirement
|
517
|
+
requirements:
|
518
|
+
- - ">="
|
519
|
+
- !ruby/object:Gem::Version
|
520
|
+
version: 0.0.3
|
521
|
+
type: :runtime
|
522
|
+
prerelease: false
|
523
|
+
version_requirements: !ruby/object:Gem::Requirement
|
524
|
+
requirements:
|
525
|
+
- - ">="
|
526
|
+
- !ruby/object:Gem::Version
|
527
|
+
version: 0.0.3
|
528
|
+
- !ruby/object:Gem::Dependency
|
529
|
+
name: dotenv
|
530
|
+
requirement: !ruby/object:Gem::Requirement
|
531
|
+
requirements:
|
532
|
+
- - ">="
|
533
|
+
- !ruby/object:Gem::Version
|
534
|
+
version: 2.1.1
|
535
|
+
- - "<"
|
536
|
+
- !ruby/object:Gem::Version
|
537
|
+
version: 3.0.0
|
538
|
+
type: :runtime
|
539
|
+
prerelease: false
|
540
|
+
version_requirements: !ruby/object:Gem::Requirement
|
541
|
+
requirements:
|
542
|
+
- - ">="
|
543
|
+
- !ruby/object:Gem::Version
|
544
|
+
version: 2.1.1
|
545
|
+
- - "<"
|
546
|
+
- !ruby/object:Gem::Version
|
547
|
+
version: 3.0.0
|
548
|
+
- !ruby/object:Gem::Dependency
|
549
|
+
name: bundler
|
550
|
+
requirement: !ruby/object:Gem::Requirement
|
551
|
+
requirements:
|
552
|
+
- - ">="
|
553
|
+
- !ruby/object:Gem::Version
|
554
|
+
version: 1.12.0
|
555
|
+
- - "<"
|
556
|
+
- !ruby/object:Gem::Version
|
557
|
+
version: 3.0.0
|
558
|
+
type: :runtime
|
559
|
+
prerelease: false
|
560
|
+
version_requirements: !ruby/object:Gem::Requirement
|
561
|
+
requirements:
|
562
|
+
- - ">="
|
563
|
+
- !ruby/object:Gem::Version
|
564
|
+
version: 1.12.0
|
565
|
+
- - "<"
|
566
|
+
- !ruby/object:Gem::Version
|
567
|
+
version: 3.0.0
|
568
|
+
- !ruby/object:Gem::Dependency
|
569
|
+
name: simctl
|
570
|
+
requirement: !ruby/object:Gem::Requirement
|
571
|
+
requirements:
|
572
|
+
- - "~>"
|
573
|
+
- !ruby/object:Gem::Version
|
574
|
+
version: 1.6.3
|
575
|
+
type: :runtime
|
576
|
+
prerelease: false
|
577
|
+
version_requirements: !ruby/object:Gem::Requirement
|
578
|
+
requirements:
|
579
|
+
- - "~>"
|
580
|
+
- !ruby/object:Gem::Version
|
581
|
+
version: 1.6.3
|
582
|
+
- !ruby/object:Gem::Dependency
|
583
|
+
name: jwt
|
584
|
+
requirement: !ruby/object:Gem::Requirement
|
585
|
+
requirements:
|
586
|
+
- - ">="
|
587
|
+
- !ruby/object:Gem::Version
|
588
|
+
version: 2.1.0
|
589
|
+
- - "<"
|
590
|
+
- !ruby/object:Gem::Version
|
591
|
+
version: '3'
|
592
|
+
type: :runtime
|
593
|
+
prerelease: false
|
594
|
+
version_requirements: !ruby/object:Gem::Requirement
|
595
|
+
requirements:
|
596
|
+
- - ">="
|
597
|
+
- !ruby/object:Gem::Version
|
598
|
+
version: 2.1.0
|
599
|
+
- - "<"
|
600
|
+
- !ruby/object:Gem::Version
|
601
|
+
version: '3'
|
602
|
+
- !ruby/object:Gem::Dependency
|
603
|
+
name: google-apis-playcustomapp_v1
|
604
|
+
requirement: !ruby/object:Gem::Requirement
|
605
|
+
requirements:
|
606
|
+
- - "~>"
|
607
|
+
- !ruby/object:Gem::Version
|
608
|
+
version: '0.1'
|
609
|
+
type: :runtime
|
610
|
+
prerelease: false
|
611
|
+
version_requirements: !ruby/object:Gem::Requirement
|
612
|
+
requirements:
|
613
|
+
- - "~>"
|
614
|
+
- !ruby/object:Gem::Version
|
615
|
+
version: '0.1'
|
616
|
+
- !ruby/object:Gem::Dependency
|
617
|
+
name: google-apis-androidpublisher_v3
|
618
|
+
requirement: !ruby/object:Gem::Requirement
|
619
|
+
requirements:
|
620
|
+
- - "~>"
|
621
|
+
- !ruby/object:Gem::Version
|
622
|
+
version: '0.3'
|
623
|
+
type: :runtime
|
624
|
+
prerelease: false
|
625
|
+
version_requirements: !ruby/object:Gem::Requirement
|
626
|
+
requirements:
|
627
|
+
- - "~>"
|
628
|
+
- !ruby/object:Gem::Version
|
629
|
+
version: '0.3'
|
630
|
+
- !ruby/object:Gem::Dependency
|
631
|
+
name: google-cloud-storage
|
632
|
+
requirement: !ruby/object:Gem::Requirement
|
633
|
+
requirements:
|
634
|
+
- - "~>"
|
635
|
+
- !ruby/object:Gem::Version
|
636
|
+
version: '1.31'
|
637
|
+
type: :runtime
|
638
|
+
prerelease: false
|
639
|
+
version_requirements: !ruby/object:Gem::Requirement
|
640
|
+
requirements:
|
641
|
+
- - "~>"
|
642
|
+
- !ruby/object:Gem::Version
|
643
|
+
version: '1.31'
|
644
|
+
- !ruby/object:Gem::Dependency
|
645
|
+
name: emoji_regex
|
646
|
+
requirement: !ruby/object:Gem::Requirement
|
647
|
+
requirements:
|
648
|
+
- - ">="
|
649
|
+
- !ruby/object:Gem::Version
|
650
|
+
version: '0.1'
|
651
|
+
- - "<"
|
652
|
+
- !ruby/object:Gem::Version
|
653
|
+
version: '4.0'
|
654
|
+
type: :runtime
|
655
|
+
prerelease: false
|
656
|
+
version_requirements: !ruby/object:Gem::Requirement
|
657
|
+
requirements:
|
658
|
+
- - ">="
|
659
|
+
- !ruby/object:Gem::Version
|
660
|
+
version: '0.1'
|
661
|
+
- - "<"
|
662
|
+
- !ruby/object:Gem::Version
|
663
|
+
version: '4.0'
|
664
|
+
- !ruby/object:Gem::Dependency
|
665
|
+
name: aws-sdk-s3
|
666
|
+
requirement: !ruby/object:Gem::Requirement
|
667
|
+
requirements:
|
668
|
+
- - "~>"
|
669
|
+
- !ruby/object:Gem::Version
|
670
|
+
version: '1.0'
|
671
|
+
type: :runtime
|
672
|
+
prerelease: false
|
673
|
+
version_requirements: !ruby/object:Gem::Requirement
|
674
|
+
requirements:
|
675
|
+
- - "~>"
|
676
|
+
- !ruby/object:Gem::Version
|
677
|
+
version: '1.0'
|
678
|
+
- !ruby/object:Gem::Dependency
|
679
|
+
name: rake
|
680
|
+
requirement: !ruby/object:Gem::Requirement
|
681
|
+
requirements:
|
682
|
+
- - ">="
|
683
|
+
- !ruby/object:Gem::Version
|
684
|
+
version: '0'
|
685
|
+
type: :development
|
686
|
+
prerelease: false
|
687
|
+
version_requirements: !ruby/object:Gem::Requirement
|
688
|
+
requirements:
|
689
|
+
- - ">="
|
690
|
+
- !ruby/object:Gem::Version
|
691
|
+
version: '0'
|
692
|
+
- !ruby/object:Gem::Dependency
|
693
|
+
name: rspec
|
694
|
+
requirement: !ruby/object:Gem::Requirement
|
695
|
+
requirements:
|
696
|
+
- - "~>"
|
697
|
+
- !ruby/object:Gem::Version
|
698
|
+
version: '3.10'
|
699
|
+
type: :development
|
700
|
+
prerelease: false
|
701
|
+
version_requirements: !ruby/object:Gem::Requirement
|
702
|
+
requirements:
|
703
|
+
- - "~>"
|
704
|
+
- !ruby/object:Gem::Version
|
705
|
+
version: '3.10'
|
706
|
+
- !ruby/object:Gem::Dependency
|
707
|
+
name: rspec_junit_formatter
|
708
|
+
requirement: !ruby/object:Gem::Requirement
|
709
|
+
requirements:
|
710
|
+
- - "~>"
|
711
|
+
- !ruby/object:Gem::Version
|
712
|
+
version: 0.4.1
|
713
|
+
type: :development
|
714
|
+
prerelease: false
|
715
|
+
version_requirements: !ruby/object:Gem::Requirement
|
716
|
+
requirements:
|
717
|
+
- - "~>"
|
718
|
+
- !ruby/object:Gem::Version
|
719
|
+
version: 0.4.1
|
720
|
+
- !ruby/object:Gem::Dependency
|
721
|
+
name: pry
|
722
|
+
requirement: !ruby/object:Gem::Requirement
|
723
|
+
requirements:
|
724
|
+
- - ">="
|
725
|
+
- !ruby/object:Gem::Version
|
726
|
+
version: '0'
|
727
|
+
type: :development
|
728
|
+
prerelease: false
|
729
|
+
version_requirements: !ruby/object:Gem::Requirement
|
730
|
+
requirements:
|
731
|
+
- - ">="
|
732
|
+
- !ruby/object:Gem::Version
|
733
|
+
version: '0'
|
734
|
+
- !ruby/object:Gem::Dependency
|
735
|
+
name: pry-byebug
|
736
|
+
requirement: !ruby/object:Gem::Requirement
|
737
|
+
requirements:
|
738
|
+
- - ">="
|
739
|
+
- !ruby/object:Gem::Version
|
740
|
+
version: '0'
|
741
|
+
type: :development
|
742
|
+
prerelease: false
|
743
|
+
version_requirements: !ruby/object:Gem::Requirement
|
744
|
+
requirements:
|
745
|
+
- - ">="
|
746
|
+
- !ruby/object:Gem::Version
|
747
|
+
version: '0'
|
748
|
+
- !ruby/object:Gem::Dependency
|
749
|
+
name: pry-rescue
|
750
|
+
requirement: !ruby/object:Gem::Requirement
|
751
|
+
requirements:
|
752
|
+
- - ">="
|
753
|
+
- !ruby/object:Gem::Version
|
754
|
+
version: '0'
|
755
|
+
type: :development
|
756
|
+
prerelease: false
|
757
|
+
version_requirements: !ruby/object:Gem::Requirement
|
758
|
+
requirements:
|
759
|
+
- - ">="
|
760
|
+
- !ruby/object:Gem::Version
|
761
|
+
version: '0'
|
762
|
+
- !ruby/object:Gem::Dependency
|
763
|
+
name: pry-stack_explorer
|
764
|
+
requirement: !ruby/object:Gem::Requirement
|
765
|
+
requirements:
|
766
|
+
- - ">="
|
767
|
+
- !ruby/object:Gem::Version
|
768
|
+
version: '0'
|
769
|
+
type: :development
|
770
|
+
prerelease: false
|
771
|
+
version_requirements: !ruby/object:Gem::Requirement
|
772
|
+
requirements:
|
773
|
+
- - ">="
|
774
|
+
- !ruby/object:Gem::Version
|
775
|
+
version: '0'
|
776
|
+
- !ruby/object:Gem::Dependency
|
777
|
+
name: yard
|
778
|
+
requirement: !ruby/object:Gem::Requirement
|
779
|
+
requirements:
|
780
|
+
- - "~>"
|
781
|
+
- !ruby/object:Gem::Version
|
782
|
+
version: 0.9.11
|
783
|
+
type: :development
|
784
|
+
prerelease: false
|
785
|
+
version_requirements: !ruby/object:Gem::Requirement
|
786
|
+
requirements:
|
787
|
+
- - "~>"
|
788
|
+
- !ruby/object:Gem::Version
|
789
|
+
version: 0.9.11
|
790
|
+
- !ruby/object:Gem::Dependency
|
791
|
+
name: webmock
|
792
|
+
requirement: !ruby/object:Gem::Requirement
|
793
|
+
requirements:
|
794
|
+
- - "~>"
|
795
|
+
- !ruby/object:Gem::Version
|
796
|
+
version: '3.8'
|
797
|
+
type: :development
|
798
|
+
prerelease: false
|
799
|
+
version_requirements: !ruby/object:Gem::Requirement
|
800
|
+
requirements:
|
801
|
+
- - "~>"
|
802
|
+
- !ruby/object:Gem::Version
|
803
|
+
version: '3.8'
|
804
|
+
- !ruby/object:Gem::Dependency
|
805
|
+
name: coveralls
|
806
|
+
requirement: !ruby/object:Gem::Requirement
|
807
|
+
requirements:
|
808
|
+
- - "~>"
|
809
|
+
- !ruby/object:Gem::Version
|
810
|
+
version: 0.8.13
|
811
|
+
type: :development
|
812
|
+
prerelease: false
|
813
|
+
version_requirements: !ruby/object:Gem::Requirement
|
814
|
+
requirements:
|
815
|
+
- - "~>"
|
816
|
+
- !ruby/object:Gem::Version
|
817
|
+
version: 0.8.13
|
818
|
+
- !ruby/object:Gem::Dependency
|
819
|
+
name: rubocop
|
820
|
+
requirement: !ruby/object:Gem::Requirement
|
821
|
+
requirements:
|
822
|
+
- - '='
|
823
|
+
- !ruby/object:Gem::Version
|
824
|
+
version: 1.12.1
|
825
|
+
type: :development
|
826
|
+
prerelease: false
|
827
|
+
version_requirements: !ruby/object:Gem::Requirement
|
828
|
+
requirements:
|
829
|
+
- - '='
|
830
|
+
- !ruby/object:Gem::Version
|
831
|
+
version: 1.12.1
|
832
|
+
- !ruby/object:Gem::Dependency
|
833
|
+
name: rubocop-performance
|
834
|
+
requirement: !ruby/object:Gem::Requirement
|
835
|
+
requirements:
|
836
|
+
- - ">="
|
837
|
+
- !ruby/object:Gem::Version
|
838
|
+
version: '0'
|
839
|
+
type: :development
|
840
|
+
prerelease: false
|
841
|
+
version_requirements: !ruby/object:Gem::Requirement
|
842
|
+
requirements:
|
843
|
+
- - ">="
|
844
|
+
- !ruby/object:Gem::Version
|
845
|
+
version: '0'
|
846
|
+
- !ruby/object:Gem::Dependency
|
847
|
+
name: rubocop-require_tools
|
848
|
+
requirement: !ruby/object:Gem::Requirement
|
849
|
+
requirements:
|
850
|
+
- - ">="
|
851
|
+
- !ruby/object:Gem::Version
|
852
|
+
version: '0'
|
853
|
+
type: :development
|
854
|
+
prerelease: false
|
855
|
+
version_requirements: !ruby/object:Gem::Requirement
|
856
|
+
requirements:
|
857
|
+
- - ">="
|
858
|
+
- !ruby/object:Gem::Version
|
859
|
+
version: '0'
|
860
|
+
- !ruby/object:Gem::Dependency
|
861
|
+
name: rb-readline
|
862
|
+
requirement: !ruby/object:Gem::Requirement
|
863
|
+
requirements:
|
864
|
+
- - ">="
|
865
|
+
- !ruby/object:Gem::Version
|
866
|
+
version: '0'
|
867
|
+
type: :development
|
868
|
+
prerelease: false
|
869
|
+
version_requirements: !ruby/object:Gem::Requirement
|
870
|
+
requirements:
|
871
|
+
- - ">="
|
872
|
+
- !ruby/object:Gem::Version
|
873
|
+
version: '0'
|
874
|
+
- !ruby/object:Gem::Dependency
|
875
|
+
name: rest-client
|
876
|
+
requirement: !ruby/object:Gem::Requirement
|
877
|
+
requirements:
|
878
|
+
- - ">="
|
879
|
+
- !ruby/object:Gem::Version
|
880
|
+
version: 1.8.0
|
881
|
+
type: :development
|
882
|
+
prerelease: false
|
883
|
+
version_requirements: !ruby/object:Gem::Requirement
|
884
|
+
requirements:
|
885
|
+
- - ">="
|
886
|
+
- !ruby/object:Gem::Version
|
887
|
+
version: 1.8.0
|
888
|
+
- !ruby/object:Gem::Dependency
|
889
|
+
name: fakefs
|
890
|
+
requirement: !ruby/object:Gem::Requirement
|
891
|
+
requirements:
|
892
|
+
- - "~>"
|
893
|
+
- !ruby/object:Gem::Version
|
894
|
+
version: '1.2'
|
895
|
+
type: :development
|
896
|
+
prerelease: false
|
897
|
+
version_requirements: !ruby/object:Gem::Requirement
|
898
|
+
requirements:
|
899
|
+
- - "~>"
|
900
|
+
- !ruby/object:Gem::Version
|
901
|
+
version: '1.2'
|
902
|
+
- !ruby/object:Gem::Dependency
|
903
|
+
name: sinatra
|
904
|
+
requirement: !ruby/object:Gem::Requirement
|
905
|
+
requirements:
|
906
|
+
- - "~>"
|
907
|
+
- !ruby/object:Gem::Version
|
908
|
+
version: 2.0.8
|
909
|
+
type: :development
|
910
|
+
prerelease: false
|
911
|
+
version_requirements: !ruby/object:Gem::Requirement
|
912
|
+
requirements:
|
913
|
+
- - "~>"
|
914
|
+
- !ruby/object:Gem::Version
|
915
|
+
version: 2.0.8
|
916
|
+
- !ruby/object:Gem::Dependency
|
917
|
+
name: xcov
|
918
|
+
requirement: !ruby/object:Gem::Requirement
|
919
|
+
requirements:
|
920
|
+
- - "~>"
|
921
|
+
- !ruby/object:Gem::Version
|
922
|
+
version: 1.4.1
|
923
|
+
type: :development
|
924
|
+
prerelease: false
|
925
|
+
version_requirements: !ruby/object:Gem::Requirement
|
926
|
+
requirements:
|
927
|
+
- - "~>"
|
928
|
+
- !ruby/object:Gem::Version
|
929
|
+
version: 1.4.1
|
930
|
+
- !ruby/object:Gem::Dependency
|
931
|
+
name: climate_control
|
932
|
+
requirement: !ruby/object:Gem::Requirement
|
933
|
+
requirements:
|
934
|
+
- - "~>"
|
935
|
+
- !ruby/object:Gem::Version
|
936
|
+
version: 0.2.0
|
937
|
+
type: :development
|
938
|
+
prerelease: false
|
939
|
+
version_requirements: !ruby/object:Gem::Requirement
|
940
|
+
requirements:
|
941
|
+
- - "~>"
|
942
|
+
- !ruby/object:Gem::Version
|
943
|
+
version: 0.2.0
|
944
|
+
description: The easiest way to automate beta deployments and releases for your iOS
|
945
|
+
and Android apps
|
946
|
+
email:
|
947
|
+
- fastlane@krausefx.com
|
948
|
+
executables:
|
949
|
+
- bin-proxy
|
950
|
+
- fastlane
|
951
|
+
extensions: []
|
952
|
+
extra_rdoc_files: []
|
953
|
+
files:
|
954
|
+
- ".yardopts"
|
955
|
+
- LICENSE
|
956
|
+
- README.md
|
957
|
+
- bin/bin-proxy
|
958
|
+
- bin/fastlane
|
959
|
+
- cert/README.md
|
960
|
+
- cert/lib/cert.rb
|
961
|
+
- cert/lib/cert/commands_generator.rb
|
962
|
+
- cert/lib/cert/module.rb
|
963
|
+
- cert/lib/cert/options.rb
|
964
|
+
- cert/lib/cert/runner.rb
|
965
|
+
- credentials_manager/README.md
|
966
|
+
- credentials_manager/lib/credentials_manager.rb
|
967
|
+
- credentials_manager/lib/credentials_manager/account_manager.rb
|
968
|
+
- credentials_manager/lib/credentials_manager/appfile_config.rb
|
969
|
+
- credentials_manager/lib/credentials_manager/cli.rb
|
970
|
+
- deliver/README.md
|
971
|
+
- deliver/lib/assets/DeliverfileDefault
|
972
|
+
- deliver/lib/assets/DeliverfileDefault.swift
|
973
|
+
- deliver/lib/assets/ScreenshotsHelp
|
974
|
+
- deliver/lib/assets/summary.html.erb
|
975
|
+
- deliver/lib/deliver.rb
|
976
|
+
- deliver/lib/deliver/app_screenshot.rb
|
977
|
+
- deliver/lib/deliver/app_screenshot_iterator.rb
|
978
|
+
- deliver/lib/deliver/app_screenshot_validator.rb
|
979
|
+
- deliver/lib/deliver/commands_generator.rb
|
980
|
+
- deliver/lib/deliver/detect_values.rb
|
981
|
+
- deliver/lib/deliver/download_screenshots.rb
|
982
|
+
- deliver/lib/deliver/generate_summary.rb
|
983
|
+
- deliver/lib/deliver/html_generator.rb
|
984
|
+
- deliver/lib/deliver/languages.rb
|
985
|
+
- deliver/lib/deliver/loader.rb
|
986
|
+
- deliver/lib/deliver/module.rb
|
987
|
+
- deliver/lib/deliver/options.rb
|
988
|
+
- deliver/lib/deliver/runner.rb
|
989
|
+
- deliver/lib/deliver/screenshot_comparable.rb
|
990
|
+
- deliver/lib/deliver/setup.rb
|
991
|
+
- deliver/lib/deliver/submit_for_review.rb
|
992
|
+
- deliver/lib/deliver/sync_screenshots.rb
|
993
|
+
- deliver/lib/deliver/upload_metadata.rb
|
994
|
+
- deliver/lib/deliver/upload_price_tier.rb
|
995
|
+
- deliver/lib/deliver/upload_screenshots.rb
|
996
|
+
- fastlane/README.md
|
997
|
+
- fastlane/lib/assets/ActionDetails.md.erb
|
998
|
+
- fastlane/lib/assets/Actions.md.erb
|
999
|
+
- fastlane/lib/assets/AppfileTemplate
|
1000
|
+
- fastlane/lib/assets/AppfileTemplate.swift
|
1001
|
+
- fastlane/lib/assets/AppfileTemplateAndroid
|
1002
|
+
- fastlane/lib/assets/DefaultFastfileTemplate
|
1003
|
+
- fastlane/lib/assets/DefaultFastfileTemplate.swift
|
1004
|
+
- fastlane/lib/assets/completions/completion.bash
|
1005
|
+
- fastlane/lib/assets/completions/completion.fish
|
1006
|
+
- fastlane/lib/assets/completions/completion.sh
|
1007
|
+
- fastlane/lib/assets/completions/completion.zsh
|
1008
|
+
- fastlane/lib/assets/custom_action_template.rb
|
1009
|
+
- fastlane/lib/assets/mailgun_html_template.erb
|
1010
|
+
- fastlane/lib/assets/report_template.xml.erb
|
1011
|
+
- fastlane/lib/assets/s3_html_template.erb
|
1012
|
+
- fastlane/lib/assets/s3_plist_template.erb
|
1013
|
+
- fastlane/lib/assets/s3_version_template.erb
|
1014
|
+
- fastlane/lib/fastlane.rb
|
1015
|
+
- fastlane/lib/fastlane/action.rb
|
1016
|
+
- fastlane/lib/fastlane/action_collector.rb
|
1017
|
+
- fastlane/lib/fastlane/actions/README.md
|
1018
|
+
- fastlane/lib/fastlane/actions/actions_helper.rb
|
1019
|
+
- fastlane/lib/fastlane/actions/adb.rb
|
1020
|
+
- fastlane/lib/fastlane/actions/adb_devices.rb
|
1021
|
+
- fastlane/lib/fastlane/actions/add_extra_platforms.rb
|
1022
|
+
- fastlane/lib/fastlane/actions/add_git_tag.rb
|
1023
|
+
- fastlane/lib/fastlane/actions/app_store_build_number.rb
|
1024
|
+
- fastlane/lib/fastlane/actions/app_store_connect_api_key.rb
|
1025
|
+
- fastlane/lib/fastlane/actions/appaloosa.rb
|
1026
|
+
- fastlane/lib/fastlane/actions/appetize.rb
|
1027
|
+
- fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb
|
1028
|
+
- fastlane/lib/fastlane/actions/appium.rb
|
1029
|
+
- fastlane/lib/fastlane/actions/appledoc.rb
|
1030
|
+
- fastlane/lib/fastlane/actions/appstore.rb
|
1031
|
+
- fastlane/lib/fastlane/actions/apteligent.rb
|
1032
|
+
- fastlane/lib/fastlane/actions/artifactory.rb
|
1033
|
+
- fastlane/lib/fastlane/actions/automatic_code_signing.rb
|
1034
|
+
- fastlane/lib/fastlane/actions/backup_file.rb
|
1035
|
+
- fastlane/lib/fastlane/actions/backup_xcarchive.rb
|
1036
|
+
- fastlane/lib/fastlane/actions/badge.rb
|
1037
|
+
- fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb
|
1038
|
+
- fastlane/lib/fastlane/actions/build_android_app.rb
|
1039
|
+
- fastlane/lib/fastlane/actions/build_app.rb
|
1040
|
+
- fastlane/lib/fastlane/actions/build_ios_app.rb
|
1041
|
+
- fastlane/lib/fastlane/actions/build_mac_app.rb
|
1042
|
+
- fastlane/lib/fastlane/actions/bundle_install.rb
|
1043
|
+
- fastlane/lib/fastlane/actions/capture_android_screenshots.rb
|
1044
|
+
- fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
|
1045
|
+
- fastlane/lib/fastlane/actions/capture_screenshots.rb
|
1046
|
+
- fastlane/lib/fastlane/actions/carthage.rb
|
1047
|
+
- fastlane/lib/fastlane/actions/cert.rb
|
1048
|
+
- fastlane/lib/fastlane/actions/changelog_from_git_commits.rb
|
1049
|
+
- fastlane/lib/fastlane/actions/chatwork.rb
|
1050
|
+
- fastlane/lib/fastlane/actions/check_app_store_metadata.rb
|
1051
|
+
- fastlane/lib/fastlane/actions/clean_build_artifacts.rb
|
1052
|
+
- fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb
|
1053
|
+
- fastlane/lib/fastlane/actions/clear_derived_data.rb
|
1054
|
+
- fastlane/lib/fastlane/actions/clipboard.rb
|
1055
|
+
- fastlane/lib/fastlane/actions/cloc.rb
|
1056
|
+
- fastlane/lib/fastlane/actions/cocoapods.rb
|
1057
|
+
- fastlane/lib/fastlane/actions/commit_github_file.rb
|
1058
|
+
- fastlane/lib/fastlane/actions/commit_version_bump.rb
|
1059
|
+
- fastlane/lib/fastlane/actions/copy_artifacts.rb
|
1060
|
+
- fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb
|
1061
|
+
- fastlane/lib/fastlane/actions/create_app_online.rb
|
1062
|
+
- fastlane/lib/fastlane/actions/create_keychain.rb
|
1063
|
+
- fastlane/lib/fastlane/actions/create_pull_request.rb
|
1064
|
+
- fastlane/lib/fastlane/actions/create_xcframework.rb
|
1065
|
+
- fastlane/lib/fastlane/actions/danger.rb
|
1066
|
+
- fastlane/lib/fastlane/actions/debug.rb
|
1067
|
+
- fastlane/lib/fastlane/actions/default_platform.rb
|
1068
|
+
- fastlane/lib/fastlane/actions/delete_keychain.rb
|
1069
|
+
- fastlane/lib/fastlane/actions/deliver.rb
|
1070
|
+
- fastlane/lib/fastlane/actions/deploygate.rb
|
1071
|
+
- fastlane/lib/fastlane/actions/device_grid/README.md
|
1072
|
+
- fastlane/lib/fastlane/actions/docs/build_app.md
|
1073
|
+
- fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md
|
1074
|
+
- fastlane/lib/fastlane/actions/docs/capture_ios_screenshots.md
|
1075
|
+
- fastlane/lib/fastlane/actions/docs/check_app_store_metadata.md
|
1076
|
+
- fastlane/lib/fastlane/actions/docs/create_app_online.md
|
1077
|
+
- fastlane/lib/fastlane/actions/docs/frame_screenshots.md
|
1078
|
+
- fastlane/lib/fastlane/actions/docs/get_certificates.md
|
1079
|
+
- fastlane/lib/fastlane/actions/docs/get_provisioning_profile.md
|
1080
|
+
- fastlane/lib/fastlane/actions/docs/get_push_certificate.md
|
1081
|
+
- fastlane/lib/fastlane/actions/docs/run_tests.md
|
1082
|
+
- fastlane/lib/fastlane/actions/docs/sync_code_signing.md
|
1083
|
+
- fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb
|
1084
|
+
- fastlane/lib/fastlane/actions/docs/upload_to_play_store.md
|
1085
|
+
- fastlane/lib/fastlane/actions/docs/upload_to_testflight.md
|
1086
|
+
- fastlane/lib/fastlane/actions/dotgpg_environment.rb
|
1087
|
+
- fastlane/lib/fastlane/actions/download.rb
|
1088
|
+
- fastlane/lib/fastlane/actions/download_app_privacy_details_from_app_store.rb
|
1089
|
+
- fastlane/lib/fastlane/actions/download_dsyms.rb
|
1090
|
+
- fastlane/lib/fastlane/actions/download_from_play_store.rb
|
1091
|
+
- fastlane/lib/fastlane/actions/dsym_zip.rb
|
1092
|
+
- fastlane/lib/fastlane/actions/echo.rb
|
1093
|
+
- fastlane/lib/fastlane/actions/ensure_bundle_exec.rb
|
1094
|
+
- fastlane/lib/fastlane/actions/ensure_env_vars.rb
|
1095
|
+
- fastlane/lib/fastlane/actions/ensure_git_branch.rb
|
1096
|
+
- fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
|
1097
|
+
- fastlane/lib/fastlane/actions/ensure_no_debug_code.rb
|
1098
|
+
- fastlane/lib/fastlane/actions/ensure_xcode_version.rb
|
1099
|
+
- fastlane/lib/fastlane/actions/environment_variable.rb
|
1100
|
+
- fastlane/lib/fastlane/actions/erb.rb
|
1101
|
+
- fastlane/lib/fastlane/actions/fastlane_version.rb
|
1102
|
+
- fastlane/lib/fastlane/actions/flock.rb
|
1103
|
+
- fastlane/lib/fastlane/actions/frame_screenshots.rb
|
1104
|
+
- fastlane/lib/fastlane/actions/frameit.rb
|
1105
|
+
- fastlane/lib/fastlane/actions/gcovr.rb
|
1106
|
+
- fastlane/lib/fastlane/actions/get_build_number.rb
|
1107
|
+
- fastlane/lib/fastlane/actions/get_build_number_repository.rb
|
1108
|
+
- fastlane/lib/fastlane/actions/get_certificates.rb
|
1109
|
+
- fastlane/lib/fastlane/actions/get_github_release.rb
|
1110
|
+
- fastlane/lib/fastlane/actions/get_info_plist_value.rb
|
1111
|
+
- fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb
|
1112
|
+
- fastlane/lib/fastlane/actions/get_managed_play_store_publishing_rights.rb
|
1113
|
+
- fastlane/lib/fastlane/actions/get_provisioning_profile.rb
|
1114
|
+
- fastlane/lib/fastlane/actions/get_push_certificate.rb
|
1115
|
+
- fastlane/lib/fastlane/actions/get_version_number.rb
|
1116
|
+
- fastlane/lib/fastlane/actions/git_add.rb
|
1117
|
+
- fastlane/lib/fastlane/actions/git_branch.rb
|
1118
|
+
- fastlane/lib/fastlane/actions/git_commit.rb
|
1119
|
+
- fastlane/lib/fastlane/actions/git_pull.rb
|
1120
|
+
- fastlane/lib/fastlane/actions/git_remote_branch.rb
|
1121
|
+
- fastlane/lib/fastlane/actions/git_submodule_update.rb
|
1122
|
+
- fastlane/lib/fastlane/actions/git_tag_exists.rb
|
1123
|
+
- fastlane/lib/fastlane/actions/github_api.rb
|
1124
|
+
- fastlane/lib/fastlane/actions/google_play_track_release_names.rb
|
1125
|
+
- fastlane/lib/fastlane/actions/google_play_track_version_codes.rb
|
1126
|
+
- fastlane/lib/fastlane/actions/gradle.rb
|
1127
|
+
- fastlane/lib/fastlane/actions/gym.rb
|
1128
|
+
- fastlane/lib/fastlane/actions/hg_add_tag.rb
|
1129
|
+
- fastlane/lib/fastlane/actions/hg_commit_version_bump.rb
|
1130
|
+
- fastlane/lib/fastlane/actions/hg_ensure_clean_status.rb
|
1131
|
+
- fastlane/lib/fastlane/actions/hg_push.rb
|
1132
|
+
- fastlane/lib/fastlane/actions/hipchat.rb
|
1133
|
+
- fastlane/lib/fastlane/actions/hockey.rb
|
1134
|
+
- fastlane/lib/fastlane/actions/ifttt.rb
|
1135
|
+
- fastlane/lib/fastlane/actions/import.rb
|
1136
|
+
- fastlane/lib/fastlane/actions/import_certificate.rb
|
1137
|
+
- fastlane/lib/fastlane/actions/import_from_git.rb
|
1138
|
+
- fastlane/lib/fastlane/actions/increment_build_number.rb
|
1139
|
+
- fastlane/lib/fastlane/actions/increment_version_number.rb
|
1140
|
+
- fastlane/lib/fastlane/actions/install_on_device.rb
|
1141
|
+
- fastlane/lib/fastlane/actions/install_provisioning_profile.rb
|
1142
|
+
- fastlane/lib/fastlane/actions/install_xcode_plugin.rb
|
1143
|
+
- fastlane/lib/fastlane/actions/installr.rb
|
1144
|
+
- fastlane/lib/fastlane/actions/ipa.rb
|
1145
|
+
- fastlane/lib/fastlane/actions/is_ci.rb
|
1146
|
+
- fastlane/lib/fastlane/actions/jazzy.rb
|
1147
|
+
- fastlane/lib/fastlane/actions/jira.rb
|
1148
|
+
- fastlane/lib/fastlane/actions/lane_context.rb
|
1149
|
+
- fastlane/lib/fastlane/actions/last_git_commit.rb
|
1150
|
+
- fastlane/lib/fastlane/actions/last_git_tag.rb
|
1151
|
+
- fastlane/lib/fastlane/actions/latest_testflight_build_number.rb
|
1152
|
+
- fastlane/lib/fastlane/actions/lcov.rb
|
1153
|
+
- fastlane/lib/fastlane/actions/mailgun.rb
|
1154
|
+
- fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb
|
1155
|
+
- fastlane/lib/fastlane/actions/match.rb
|
1156
|
+
- fastlane/lib/fastlane/actions/match_nuke.rb
|
1157
|
+
- fastlane/lib/fastlane/actions/min_fastlane_version.rb
|
1158
|
+
- fastlane/lib/fastlane/actions/modify_services.rb
|
1159
|
+
- fastlane/lib/fastlane/actions/nexus_upload.rb
|
1160
|
+
- fastlane/lib/fastlane/actions/notarize.rb
|
1161
|
+
- fastlane/lib/fastlane/actions/notification.rb
|
1162
|
+
- fastlane/lib/fastlane/actions/notify.rb
|
1163
|
+
- fastlane/lib/fastlane/actions/number_of_commits.rb
|
1164
|
+
- fastlane/lib/fastlane/actions/oclint.rb
|
1165
|
+
- fastlane/lib/fastlane/actions/onesignal.rb
|
1166
|
+
- fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
|
1167
|
+
- fastlane/lib/fastlane/actions/opt_out_usage.rb
|
1168
|
+
- fastlane/lib/fastlane/actions/pem.rb
|
1169
|
+
- fastlane/lib/fastlane/actions/pilot.rb
|
1170
|
+
- fastlane/lib/fastlane/actions/pod_lib_lint.rb
|
1171
|
+
- fastlane/lib/fastlane/actions/pod_push.rb
|
1172
|
+
- fastlane/lib/fastlane/actions/podio_item.rb
|
1173
|
+
- fastlane/lib/fastlane/actions/precheck.rb
|
1174
|
+
- fastlane/lib/fastlane/actions/println.rb
|
1175
|
+
- fastlane/lib/fastlane/actions/produce.rb
|
1176
|
+
- fastlane/lib/fastlane/actions/prompt.rb
|
1177
|
+
- fastlane/lib/fastlane/actions/push_git_tags.rb
|
1178
|
+
- fastlane/lib/fastlane/actions/push_to_git_remote.rb
|
1179
|
+
- fastlane/lib/fastlane/actions/puts.rb
|
1180
|
+
- fastlane/lib/fastlane/actions/read_podspec.rb
|
1181
|
+
- fastlane/lib/fastlane/actions/recreate_schemes.rb
|
1182
|
+
- fastlane/lib/fastlane/actions/register_device.rb
|
1183
|
+
- fastlane/lib/fastlane/actions/register_devices.rb
|
1184
|
+
- fastlane/lib/fastlane/actions/reset_git_repo.rb
|
1185
|
+
- fastlane/lib/fastlane/actions/reset_simulator_contents.rb
|
1186
|
+
- fastlane/lib/fastlane/actions/resign.rb
|
1187
|
+
- fastlane/lib/fastlane/actions/restore_file.rb
|
1188
|
+
- fastlane/lib/fastlane/actions/rocket.rb
|
1189
|
+
- fastlane/lib/fastlane/actions/rsync.rb
|
1190
|
+
- fastlane/lib/fastlane/actions/ruby_version.rb
|
1191
|
+
- fastlane/lib/fastlane/actions/run_tests.rb
|
1192
|
+
- fastlane/lib/fastlane/actions/s3.rb
|
1193
|
+
- fastlane/lib/fastlane/actions/say.rb
|
1194
|
+
- fastlane/lib/fastlane/actions/scan.rb
|
1195
|
+
- fastlane/lib/fastlane/actions/scp.rb
|
1196
|
+
- fastlane/lib/fastlane/actions/screengrab.rb
|
1197
|
+
- fastlane/lib/fastlane/actions/set_build_number_repository.rb
|
1198
|
+
- fastlane/lib/fastlane/actions/set_changelog.rb
|
1199
|
+
- fastlane/lib/fastlane/actions/set_github_release.rb
|
1200
|
+
- fastlane/lib/fastlane/actions/set_info_plist_value.rb
|
1201
|
+
- fastlane/lib/fastlane/actions/set_pod_key.rb
|
1202
|
+
- fastlane/lib/fastlane/actions/setup_ci.rb
|
1203
|
+
- fastlane/lib/fastlane/actions/setup_circle_ci.rb
|
1204
|
+
- fastlane/lib/fastlane/actions/setup_jenkins.rb
|
1205
|
+
- fastlane/lib/fastlane/actions/setup_travis.rb
|
1206
|
+
- fastlane/lib/fastlane/actions/sh.rb
|
1207
|
+
- fastlane/lib/fastlane/actions/sigh.rb
|
1208
|
+
- fastlane/lib/fastlane/actions/skip_docs.rb
|
1209
|
+
- fastlane/lib/fastlane/actions/slack.rb
|
1210
|
+
- fastlane/lib/fastlane/actions/slather.rb
|
1211
|
+
- fastlane/lib/fastlane/actions/snapshot.rb
|
1212
|
+
- fastlane/lib/fastlane/actions/sonar.rb
|
1213
|
+
- fastlane/lib/fastlane/actions/sourcedocs.rb
|
1214
|
+
- fastlane/lib/fastlane/actions/spaceship_logs.rb
|
1215
|
+
- fastlane/lib/fastlane/actions/spaceship_stats.rb
|
1216
|
+
- fastlane/lib/fastlane/actions/splunkmint.rb
|
1217
|
+
- fastlane/lib/fastlane/actions/spm.rb
|
1218
|
+
- fastlane/lib/fastlane/actions/ssh.rb
|
1219
|
+
- fastlane/lib/fastlane/actions/supply.rb
|
1220
|
+
- fastlane/lib/fastlane/actions/swiftlint.rb
|
1221
|
+
- fastlane/lib/fastlane/actions/sync_code_signing.rb
|
1222
|
+
- fastlane/lib/fastlane/actions/team_id.rb
|
1223
|
+
- fastlane/lib/fastlane/actions/team_name.rb
|
1224
|
+
- fastlane/lib/fastlane/actions/testfairy.rb
|
1225
|
+
- fastlane/lib/fastlane/actions/testflight.rb
|
1226
|
+
- fastlane/lib/fastlane/actions/trainer.rb
|
1227
|
+
- fastlane/lib/fastlane/actions/tryouts.rb
|
1228
|
+
- fastlane/lib/fastlane/actions/twitter.rb
|
1229
|
+
- fastlane/lib/fastlane/actions/typetalk.rb
|
1230
|
+
- fastlane/lib/fastlane/actions/unlock_keychain.rb
|
1231
|
+
- fastlane/lib/fastlane/actions/update_app_group_identifiers.rb
|
1232
|
+
- fastlane/lib/fastlane/actions/update_app_identifier.rb
|
1233
|
+
- fastlane/lib/fastlane/actions/update_code_signing_settings.rb
|
1234
|
+
- fastlane/lib/fastlane/actions/update_fastlane.rb
|
1235
|
+
- fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb
|
1236
|
+
- fastlane/lib/fastlane/actions/update_info_plist.rb
|
1237
|
+
- fastlane/lib/fastlane/actions/update_keychain_access_groups.rb
|
1238
|
+
- fastlane/lib/fastlane/actions/update_plist.rb
|
1239
|
+
- fastlane/lib/fastlane/actions/update_project_code_signing.rb
|
1240
|
+
- fastlane/lib/fastlane/actions/update_project_provisioning.rb
|
1241
|
+
- fastlane/lib/fastlane/actions/update_project_team.rb
|
1242
|
+
- fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb
|
1243
|
+
- fastlane/lib/fastlane/actions/update_url_schemes.rb
|
1244
|
+
- fastlane/lib/fastlane/actions/upload_app_privacy_details_to_app_store.rb
|
1245
|
+
- fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb
|
1246
|
+
- fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb
|
1247
|
+
- fastlane/lib/fastlane/actions/upload_to_app_store.rb
|
1248
|
+
- fastlane/lib/fastlane/actions/upload_to_play_store.rb
|
1249
|
+
- fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb
|
1250
|
+
- fastlane/lib/fastlane/actions/upload_to_testflight.rb
|
1251
|
+
- fastlane/lib/fastlane/actions/validate_play_store_json_key.rb
|
1252
|
+
- fastlane/lib/fastlane/actions/verify_build.rb
|
1253
|
+
- fastlane/lib/fastlane/actions/verify_pod_keys.rb
|
1254
|
+
- fastlane/lib/fastlane/actions/verify_xcode.rb
|
1255
|
+
- fastlane/lib/fastlane/actions/version_bump_podspec.rb
|
1256
|
+
- fastlane/lib/fastlane/actions/version_get_podspec.rb
|
1257
|
+
- fastlane/lib/fastlane/actions/xcode_install.rb
|
1258
|
+
- fastlane/lib/fastlane/actions/xcode_select.rb
|
1259
|
+
- fastlane/lib/fastlane/actions/xcode_server_get_assets.rb
|
1260
|
+
- fastlane/lib/fastlane/actions/xcodebuild.rb
|
1261
|
+
- fastlane/lib/fastlane/actions/xcodes.rb
|
1262
|
+
- fastlane/lib/fastlane/actions/xcov.rb
|
1263
|
+
- fastlane/lib/fastlane/actions/xctool.rb
|
1264
|
+
- fastlane/lib/fastlane/actions/xcversion.rb
|
1265
|
+
- fastlane/lib/fastlane/actions/zip.rb
|
1266
|
+
- fastlane/lib/fastlane/auto_complete.rb
|
1267
|
+
- fastlane/lib/fastlane/boolean.rb
|
1268
|
+
- fastlane/lib/fastlane/cli_tools_distributor.rb
|
1269
|
+
- fastlane/lib/fastlane/command_line_handler.rb
|
1270
|
+
- fastlane/lib/fastlane/commands_generator.rb
|
1271
|
+
- fastlane/lib/fastlane/configuration_helper.rb
|
1272
|
+
- fastlane/lib/fastlane/core_ext/bundler_monkey_patch.rb
|
1273
|
+
- fastlane/lib/fastlane/documentation/actions_list.rb
|
1274
|
+
- fastlane/lib/fastlane/documentation/docs_generator.rb
|
1275
|
+
- fastlane/lib/fastlane/documentation/markdown_docs_generator.rb
|
1276
|
+
- fastlane/lib/fastlane/environment_printer.rb
|
1277
|
+
- fastlane/lib/fastlane/erb_template_helper.rb
|
1278
|
+
- fastlane/lib/fastlane/fast_file.rb
|
1279
|
+
- fastlane/lib/fastlane/fastlane_require.rb
|
1280
|
+
- fastlane/lib/fastlane/features.rb
|
1281
|
+
- fastlane/lib/fastlane/helper/README.md
|
1282
|
+
- fastlane/lib/fastlane/helper/adb_helper.rb
|
1283
|
+
- fastlane/lib/fastlane/helper/dotenv_helper.rb
|
1284
|
+
- fastlane/lib/fastlane/helper/gem_helper.rb
|
1285
|
+
- fastlane/lib/fastlane/helper/git_helper.rb
|
1286
|
+
- fastlane/lib/fastlane/helper/gradle_helper.rb
|
1287
|
+
- fastlane/lib/fastlane/helper/lane_helper.rb
|
1288
|
+
- fastlane/lib/fastlane/helper/podspec_helper.rb
|
1289
|
+
- fastlane/lib/fastlane/helper/s3_client_helper.rb
|
1290
|
+
- fastlane/lib/fastlane/helper/sh_helper.rb
|
1291
|
+
- fastlane/lib/fastlane/helper/xcodebuild_formatter_helper.rb
|
1292
|
+
- fastlane/lib/fastlane/helper/xcodeproj_helper.rb
|
1293
|
+
- fastlane/lib/fastlane/helper/xcodes_helper.rb
|
1294
|
+
- fastlane/lib/fastlane/helper/xcversion_helper.rb
|
1295
|
+
- fastlane/lib/fastlane/junit_generator.rb
|
1296
|
+
- fastlane/lib/fastlane/lane.rb
|
1297
|
+
- fastlane/lib/fastlane/lane_list.rb
|
1298
|
+
- fastlane/lib/fastlane/lane_manager.rb
|
1299
|
+
- fastlane/lib/fastlane/lane_manager_base.rb
|
1300
|
+
- fastlane/lib/fastlane/markdown_table_formatter.rb
|
1301
|
+
- fastlane/lib/fastlane/new_action.rb
|
1302
|
+
- fastlane/lib/fastlane/notification/slack.rb
|
1303
|
+
- fastlane/lib/fastlane/one_off.rb
|
1304
|
+
- fastlane/lib/fastlane/other_action.rb
|
1305
|
+
- fastlane/lib/fastlane/plugins/plugin_fetcher.rb
|
1306
|
+
- fastlane/lib/fastlane/plugins/plugin_generator.rb
|
1307
|
+
- fastlane/lib/fastlane/plugins/plugin_generator_ui.rb
|
1308
|
+
- fastlane/lib/fastlane/plugins/plugin_info.rb
|
1309
|
+
- fastlane/lib/fastlane/plugins/plugin_info_collector.rb
|
1310
|
+
- fastlane/lib/fastlane/plugins/plugin_manager.rb
|
1311
|
+
- fastlane/lib/fastlane/plugins/plugin_search.rb
|
1312
|
+
- fastlane/lib/fastlane/plugins/plugin_update_manager.rb
|
1313
|
+
- fastlane/lib/fastlane/plugins/plugins.rb
|
1314
|
+
- fastlane/lib/fastlane/plugins/template/%gem_name%.gemspec.erb
|
1315
|
+
- fastlane/lib/fastlane/plugins/template/.circleci/config.yml
|
1316
|
+
- fastlane/lib/fastlane/plugins/template/.github/workflows/test.yml
|
1317
|
+
- fastlane/lib/fastlane/plugins/template/.gitignore
|
1318
|
+
- fastlane/lib/fastlane/plugins/template/.rspec
|
1319
|
+
- fastlane/lib/fastlane/plugins/template/.rubocop.yml
|
1320
|
+
- fastlane/lib/fastlane/plugins/template/.travis.yml
|
1321
|
+
- fastlane/lib/fastlane/plugins/template/Gemfile
|
1322
|
+
- fastlane/lib/fastlane/plugins/template/LICENSE.erb
|
1323
|
+
- fastlane/lib/fastlane/plugins/template/README.md.erb
|
1324
|
+
- fastlane/lib/fastlane/plugins/template/Rakefile
|
1325
|
+
- fastlane/lib/fastlane/plugins/template/fastlane/Fastfile.erb
|
1326
|
+
- fastlane/lib/fastlane/plugins/template/fastlane/Pluginfile.erb
|
1327
|
+
- fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%.rb.erb
|
1328
|
+
- fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb
|
1329
|
+
- fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/helper/%plugin_name%_helper.rb.erb
|
1330
|
+
- fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/version.rb.erb
|
1331
|
+
- fastlane/lib/fastlane/plugins/template/spec/%plugin_name%_action_spec.rb.erb
|
1332
|
+
- fastlane/lib/fastlane/plugins/template/spec/spec_helper.rb.erb
|
1333
|
+
- fastlane/lib/fastlane/runner.rb
|
1334
|
+
- fastlane/lib/fastlane/server/action_command.rb
|
1335
|
+
- fastlane/lib/fastlane/server/action_command_return.rb
|
1336
|
+
- fastlane/lib/fastlane/server/command_executor.rb
|
1337
|
+
- fastlane/lib/fastlane/server/command_parser.rb
|
1338
|
+
- fastlane/lib/fastlane/server/control_command.rb
|
1339
|
+
- fastlane/lib/fastlane/server/json_return_value_processor.rb
|
1340
|
+
- fastlane/lib/fastlane/server/socket_server.rb
|
1341
|
+
- fastlane/lib/fastlane/server/socket_server_action_command_executor.rb
|
1342
|
+
- fastlane/lib/fastlane/setup/setup.rb
|
1343
|
+
- fastlane/lib/fastlane/setup/setup_android.rb
|
1344
|
+
- fastlane/lib/fastlane/setup/setup_ios.rb
|
1345
|
+
- fastlane/lib/fastlane/shells.rb
|
1346
|
+
- fastlane/lib/fastlane/supported_platforms.rb
|
1347
|
+
- fastlane/lib/fastlane/swift_fastlane_api_generator.rb
|
1348
|
+
- fastlane/lib/fastlane/swift_fastlane_function.rb
|
1349
|
+
- fastlane/lib/fastlane/swift_lane_manager.rb
|
1350
|
+
- fastlane/lib/fastlane/swift_runner_upgrader.rb
|
1351
|
+
- fastlane/lib/fastlane/tools.rb
|
1352
|
+
- fastlane/lib/fastlane/version.rb
|
1353
|
+
- fastlane/swift/Actions.swift
|
1354
|
+
- fastlane/swift/Appfile.swift
|
1355
|
+
- fastlane/swift/ArgumentProcessor.swift
|
1356
|
+
- fastlane/swift/Atomic.swift
|
1357
|
+
- fastlane/swift/ControlCommand.swift
|
1358
|
+
- fastlane/swift/Deliverfile.swift
|
1359
|
+
- fastlane/swift/DeliverfileProtocol.swift
|
1360
|
+
- fastlane/swift/Fastfile.swift
|
1361
|
+
- fastlane/swift/Fastlane.swift
|
1362
|
+
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
|
1363
|
+
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
1364
|
+
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
1365
|
+
- fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
|
1366
|
+
- fastlane/swift/FastlaneSwiftRunner/README.txt
|
1367
|
+
- fastlane/swift/Gymfile.swift
|
1368
|
+
- fastlane/swift/GymfileProtocol.swift
|
1369
|
+
- fastlane/swift/LaneFileProtocol.swift
|
1370
|
+
- fastlane/swift/MainProcess.swift
|
1371
|
+
- fastlane/swift/Matchfile.swift
|
1372
|
+
- fastlane/swift/MatchfileProtocol.swift
|
1373
|
+
- fastlane/swift/OptionalConfigValue.swift
|
1374
|
+
- fastlane/swift/Plugins.swift
|
1375
|
+
- fastlane/swift/Precheckfile.swift
|
1376
|
+
- fastlane/swift/PrecheckfileProtocol.swift
|
1377
|
+
- fastlane/swift/RubyCommand.swift
|
1378
|
+
- fastlane/swift/RubyCommandable.swift
|
1379
|
+
- fastlane/swift/Runner.swift
|
1380
|
+
- fastlane/swift/RunnerArgument.swift
|
1381
|
+
- fastlane/swift/Scanfile.swift
|
1382
|
+
- fastlane/swift/ScanfileProtocol.swift
|
1383
|
+
- fastlane/swift/Screengrabfile.swift
|
1384
|
+
- fastlane/swift/ScreengrabfileProtocol.swift
|
1385
|
+
- fastlane/swift/Snapshotfile.swift
|
1386
|
+
- fastlane/swift/SnapshotfileProtocol.swift
|
1387
|
+
- fastlane/swift/SocketClient.swift
|
1388
|
+
- fastlane/swift/SocketClientDelegateProtocol.swift
|
1389
|
+
- fastlane/swift/SocketResponse.swift
|
1390
|
+
- fastlane/swift/formatting/Brewfile
|
1391
|
+
- fastlane/swift/formatting/Brewfile.lock.json
|
1392
|
+
- fastlane/swift/formatting/Rakefile
|
1393
|
+
- fastlane/swift/main.swift
|
1394
|
+
- fastlane/swift/upgrade_manifest.json
|
1395
|
+
- fastlane_core/README.md
|
1396
|
+
- fastlane_core/lib/assets/XMLTemplate.xml.erb
|
1397
|
+
- fastlane_core/lib/fastlane_core.rb
|
1398
|
+
- fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb
|
1399
|
+
- fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb
|
1400
|
+
- fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb
|
1401
|
+
- fastlane_core/lib/fastlane_core/analytics/analytics_ingester_client.rb
|
1402
|
+
- fastlane_core/lib/fastlane_core/analytics/analytics_session.rb
|
1403
|
+
- fastlane_core/lib/fastlane_core/analytics/app_identifier_guesser.rb
|
1404
|
+
- fastlane_core/lib/fastlane_core/android_package_name_guesser.rb
|
1405
|
+
- fastlane_core/lib/fastlane_core/build_watcher.rb
|
1406
|
+
- fastlane_core/lib/fastlane_core/cert_checker.rb
|
1407
|
+
- fastlane_core/lib/fastlane_core/clipboard.rb
|
1408
|
+
- fastlane_core/lib/fastlane_core/command_executor.rb
|
1409
|
+
- fastlane_core/lib/fastlane_core/configuration/commander_generator.rb
|
1410
|
+
- fastlane_core/lib/fastlane_core/configuration/config_item.rb
|
1411
|
+
- fastlane_core/lib/fastlane_core/configuration/configuration.rb
|
1412
|
+
- fastlane_core/lib/fastlane_core/configuration/configuration_file.rb
|
1413
|
+
- fastlane_core/lib/fastlane_core/core_ext/cfpropertylist.rb
|
1414
|
+
- fastlane_core/lib/fastlane_core/core_ext/shellwords.rb
|
1415
|
+
- fastlane_core/lib/fastlane_core/core_ext/string.rb
|
1416
|
+
- fastlane_core/lib/fastlane_core/device_manager.rb
|
1417
|
+
- fastlane_core/lib/fastlane_core/env.rb
|
1418
|
+
- fastlane_core/lib/fastlane_core/fastlane_folder.rb
|
1419
|
+
- fastlane_core/lib/fastlane_core/fastlane_pty.rb
|
1420
|
+
- fastlane_core/lib/fastlane_core/feature/feature.rb
|
1421
|
+
- fastlane_core/lib/fastlane_core/features.rb
|
1422
|
+
- fastlane_core/lib/fastlane_core/globals.rb
|
1423
|
+
- fastlane_core/lib/fastlane_core/helper.rb
|
1424
|
+
- fastlane_core/lib/fastlane_core/ios_app_identifier_guesser.rb
|
1425
|
+
- fastlane_core/lib/fastlane_core/ipa_file_analyser.rb
|
1426
|
+
- fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb
|
1427
|
+
- fastlane_core/lib/fastlane_core/itunes_transporter.rb
|
1428
|
+
- fastlane_core/lib/fastlane_core/keychain_importer.rb
|
1429
|
+
- fastlane_core/lib/fastlane_core/languages.rb
|
1430
|
+
- fastlane_core/lib/fastlane_core/module.rb
|
1431
|
+
- fastlane_core/lib/fastlane_core/pkg_file_analyser.rb
|
1432
|
+
- fastlane_core/lib/fastlane_core/pkg_upload_package_builder.rb
|
1433
|
+
- fastlane_core/lib/fastlane_core/print_table.rb
|
1434
|
+
- fastlane_core/lib/fastlane_core/project.rb
|
1435
|
+
- fastlane_core/lib/fastlane_core/provisioning_profile.rb
|
1436
|
+
- fastlane_core/lib/fastlane_core/queue_worker.rb
|
1437
|
+
- fastlane_core/lib/fastlane_core/string_filters.rb
|
1438
|
+
- fastlane_core/lib/fastlane_core/swag.rb
|
1439
|
+
- fastlane_core/lib/fastlane_core/tag_version.rb
|
1440
|
+
- fastlane_core/lib/fastlane_core/test_parser.rb
|
1441
|
+
- fastlane_core/lib/fastlane_core/ui/disable_colors.rb
|
1442
|
+
- fastlane_core/lib/fastlane_core/ui/errors.rb
|
1443
|
+
- fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb
|
1444
|
+
- fastlane_core/lib/fastlane_core/ui/errors/fastlane_crash.rb
|
1445
|
+
- fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb
|
1446
|
+
- fastlane_core/lib/fastlane_core/ui/errors/fastlane_exception.rb
|
1447
|
+
- fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb
|
1448
|
+
- fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb
|
1449
|
+
- fastlane_core/lib/fastlane_core/ui/github_issue_inspector_reporter.rb
|
1450
|
+
- fastlane_core/lib/fastlane_core/ui/help.erb
|
1451
|
+
- fastlane_core/lib/fastlane_core/ui/help_formatter.rb
|
1452
|
+
- fastlane_core/lib/fastlane_core/ui/implementations/shell.rb
|
1453
|
+
- fastlane_core/lib/fastlane_core/ui/interface.rb
|
1454
|
+
- fastlane_core/lib/fastlane_core/ui/ui.rb
|
1455
|
+
- fastlane_core/lib/fastlane_core/update_checker/changelog.rb
|
1456
|
+
- fastlane_core/lib/fastlane_core/update_checker/update_checker.rb
|
1457
|
+
- frameit/README.md
|
1458
|
+
- frameit/lib/assets/empty.png
|
1459
|
+
- frameit/lib/frameit.rb
|
1460
|
+
- frameit/lib/frameit/commands_generator.rb
|
1461
|
+
- frameit/lib/frameit/config_parser.rb
|
1462
|
+
- frameit/lib/frameit/dependency_checker.rb
|
1463
|
+
- frameit/lib/frameit/device.rb
|
1464
|
+
- frameit/lib/frameit/device_types.rb
|
1465
|
+
- frameit/lib/frameit/editor.rb
|
1466
|
+
- frameit/lib/frameit/frame_downloader.rb
|
1467
|
+
- frameit/lib/frameit/mac_editor.rb
|
1468
|
+
- frameit/lib/frameit/module.rb
|
1469
|
+
- frameit/lib/frameit/offsets.rb
|
1470
|
+
- frameit/lib/frameit/options.rb
|
1471
|
+
- frameit/lib/frameit/runner.rb
|
1472
|
+
- frameit/lib/frameit/screenshot.rb
|
1473
|
+
- frameit/lib/frameit/strings_parser.rb
|
1474
|
+
- frameit/lib/frameit/template_finder.rb
|
1475
|
+
- frameit/lib/frameit/trim_box.rb
|
1476
|
+
- gym/README.md
|
1477
|
+
- gym/lib/assets/GymfileTemplate
|
1478
|
+
- gym/lib/assets/GymfileTemplate.swift
|
1479
|
+
- gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
|
1480
|
+
- gym/lib/gym.rb
|
1481
|
+
- gym/lib/gym/code_signing_mapping.rb
|
1482
|
+
- gym/lib/gym/commands_generator.rb
|
1483
|
+
- gym/lib/gym/detect_values.rb
|
1484
|
+
- gym/lib/gym/error_handler.rb
|
1485
|
+
- gym/lib/gym/generators/README.md
|
1486
|
+
- gym/lib/gym/generators/build_command_generator.rb
|
1487
|
+
- gym/lib/gym/generators/package_command_generator.rb
|
1488
|
+
- gym/lib/gym/generators/package_command_generator_xcode7.rb
|
1489
|
+
- gym/lib/gym/manager.rb
|
1490
|
+
- gym/lib/gym/module.rb
|
1491
|
+
- gym/lib/gym/options.rb
|
1492
|
+
- gym/lib/gym/runner.rb
|
1493
|
+
- gym/lib/gym/xcode.rb
|
1494
|
+
- gym/lib/gym/xcodebuild_fixes/README.md
|
1495
|
+
- gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb
|
1496
|
+
- match/README.md
|
1497
|
+
- match/lib/assets/MatchfileTemplate
|
1498
|
+
- match/lib/assets/MatchfileTemplate.swift
|
1499
|
+
- match/lib/assets/READMETemplate.md
|
1500
|
+
- match/lib/match.rb
|
1501
|
+
- match/lib/match/change_password.rb
|
1502
|
+
- match/lib/match/commands_generator.rb
|
1503
|
+
- match/lib/match/encryption.rb
|
1504
|
+
- match/lib/match/encryption/interface.rb
|
1505
|
+
- match/lib/match/encryption/openssl.rb
|
1506
|
+
- match/lib/match/generator.rb
|
1507
|
+
- match/lib/match/importer.rb
|
1508
|
+
- match/lib/match/migrate.rb
|
1509
|
+
- match/lib/match/module.rb
|
1510
|
+
- match/lib/match/nuke.rb
|
1511
|
+
- match/lib/match/options.rb
|
1512
|
+
- match/lib/match/runner.rb
|
1513
|
+
- match/lib/match/setup.rb
|
1514
|
+
- match/lib/match/spaceship_ensure.rb
|
1515
|
+
- match/lib/match/storage.rb
|
1516
|
+
- match/lib/match/storage/git_storage.rb
|
1517
|
+
- match/lib/match/storage/gitlab/client.rb
|
1518
|
+
- match/lib/match/storage/gitlab/secure_file.rb
|
1519
|
+
- match/lib/match/storage/gitlab_secure_files.rb
|
1520
|
+
- match/lib/match/storage/google_cloud_storage.rb
|
1521
|
+
- match/lib/match/storage/interface.rb
|
1522
|
+
- match/lib/match/storage/s3_storage.rb
|
1523
|
+
- match/lib/match/table_printer.rb
|
1524
|
+
- match/lib/match/utils.rb
|
1525
|
+
- pem/README.md
|
1526
|
+
- pem/lib/pem.rb
|
1527
|
+
- pem/lib/pem/commands_generator.rb
|
1528
|
+
- pem/lib/pem/manager.rb
|
1529
|
+
- pem/lib/pem/module.rb
|
1530
|
+
- pem/lib/pem/options.rb
|
1531
|
+
- pilot/README.md
|
1532
|
+
- pilot/lib/pilot.rb
|
1533
|
+
- pilot/lib/pilot/build_manager.rb
|
1534
|
+
- pilot/lib/pilot/commands_generator.rb
|
1535
|
+
- pilot/lib/pilot/manager.rb
|
1536
|
+
- pilot/lib/pilot/module.rb
|
1537
|
+
- pilot/lib/pilot/options.rb
|
1538
|
+
- pilot/lib/pilot/tester_exporter.rb
|
1539
|
+
- pilot/lib/pilot/tester_importer.rb
|
1540
|
+
- pilot/lib/pilot/tester_manager.rb
|
1541
|
+
- precheck/README.md
|
1542
|
+
- precheck/lib/assets/PrecheckfileTemplate
|
1543
|
+
- precheck/lib/assets/PrecheckfileTemplate.swift
|
1544
|
+
- precheck/lib/precheck.rb
|
1545
|
+
- precheck/lib/precheck/commands_generator.rb
|
1546
|
+
- precheck/lib/precheck/item_to_check.rb
|
1547
|
+
- precheck/lib/precheck/module.rb
|
1548
|
+
- precheck/lib/precheck/options.rb
|
1549
|
+
- precheck/lib/precheck/rule.rb
|
1550
|
+
- precheck/lib/precheck/rule_check_result.rb
|
1551
|
+
- precheck/lib/precheck/rule_processor.rb
|
1552
|
+
- precheck/lib/precheck/rules/abstract_text_match_rule.rb
|
1553
|
+
- precheck/lib/precheck/rules/all.rb
|
1554
|
+
- precheck/lib/precheck/rules/copyright_date_rule.rb
|
1555
|
+
- precheck/lib/precheck/rules/curse_words_rule.rb
|
1556
|
+
- precheck/lib/precheck/rules/custom_text_rule.rb
|
1557
|
+
- precheck/lib/precheck/rules/free_stuff_iap_rule.rb
|
1558
|
+
- precheck/lib/precheck/rules/future_functionality_rule.rb
|
1559
|
+
- precheck/lib/precheck/rules/negative_apple_sentiment_rule.rb
|
1560
|
+
- precheck/lib/precheck/rules/other_platforms_rule.rb
|
1561
|
+
- precheck/lib/precheck/rules/placeholder_words_rule.rb
|
1562
|
+
- precheck/lib/precheck/rules/rules_data/curse_word_hashes/en_us.txt
|
1563
|
+
- precheck/lib/precheck/rules/test_words_rule.rb
|
1564
|
+
- precheck/lib/precheck/rules/unreachable_urls_rule.rb
|
1565
|
+
- precheck/lib/precheck/runner.rb
|
1566
|
+
- produce/README.md
|
1567
|
+
- produce/lib/produce.rb
|
1568
|
+
- produce/lib/produce/available_default_languages.rb
|
1569
|
+
- produce/lib/produce/cloud_container.rb
|
1570
|
+
- produce/lib/produce/commands_generator.rb
|
1571
|
+
- produce/lib/produce/developer_center.rb
|
1572
|
+
- produce/lib/produce/group.rb
|
1573
|
+
- produce/lib/produce/itunes_connect.rb
|
1574
|
+
- produce/lib/produce/manager.rb
|
1575
|
+
- produce/lib/produce/merchant.rb
|
1576
|
+
- produce/lib/produce/module.rb
|
1577
|
+
- produce/lib/produce/options.rb
|
1578
|
+
- produce/lib/produce/service.rb
|
1579
|
+
- scan/README.md
|
1580
|
+
- scan/lib/assets/ScanfileTemplate
|
1581
|
+
- scan/lib/assets/ScanfileTemplate.swift
|
1582
|
+
- scan/lib/scan.rb
|
1583
|
+
- scan/lib/scan/commands_generator.rb
|
1584
|
+
- scan/lib/scan/detect_values.rb
|
1585
|
+
- scan/lib/scan/error_handler.rb
|
1586
|
+
- scan/lib/scan/manager.rb
|
1587
|
+
- scan/lib/scan/module.rb
|
1588
|
+
- scan/lib/scan/options.rb
|
1589
|
+
- scan/lib/scan/runner.rb
|
1590
|
+
- scan/lib/scan/slack_poster.rb
|
1591
|
+
- scan/lib/scan/test_command_generator.rb
|
1592
|
+
- scan/lib/scan/test_result_parser.rb
|
1593
|
+
- scan/lib/scan/xcpretty_reporter_options_generator.rb
|
1594
|
+
- screengrab/README.md
|
1595
|
+
- screengrab/lib/assets/ScreengrabfileTemplate
|
1596
|
+
- screengrab/lib/assets/ScreengrabfileTemplate.swift
|
1597
|
+
- screengrab/lib/screengrab.rb
|
1598
|
+
- screengrab/lib/screengrab/android_environment.rb
|
1599
|
+
- screengrab/lib/screengrab/commands_generator.rb
|
1600
|
+
- screengrab/lib/screengrab/dependency_checker.rb
|
1601
|
+
- screengrab/lib/screengrab/detect_values.rb
|
1602
|
+
- screengrab/lib/screengrab/module.rb
|
1603
|
+
- screengrab/lib/screengrab/options.rb
|
1604
|
+
- screengrab/lib/screengrab/page.html.erb
|
1605
|
+
- screengrab/lib/screengrab/reports_generator.rb
|
1606
|
+
- screengrab/lib/screengrab/runner.rb
|
1607
|
+
- screengrab/lib/screengrab/setup.rb
|
1608
|
+
- sigh/README.md
|
1609
|
+
- sigh/lib/assets/resign.sh
|
1610
|
+
- sigh/lib/sigh.rb
|
1611
|
+
- sigh/lib/sigh/commands_generator.rb
|
1612
|
+
- sigh/lib/sigh/download_all.rb
|
1613
|
+
- sigh/lib/sigh/local_manage.rb
|
1614
|
+
- sigh/lib/sigh/manager.rb
|
1615
|
+
- sigh/lib/sigh/module.rb
|
1616
|
+
- sigh/lib/sigh/options.rb
|
1617
|
+
- sigh/lib/sigh/repair.rb
|
1618
|
+
- sigh/lib/sigh/resign.rb
|
1619
|
+
- sigh/lib/sigh/runner.rb
|
1620
|
+
- snapshot/README.md
|
1621
|
+
- snapshot/lib/assets/SnapfileTemplate
|
1622
|
+
- snapshot/lib/assets/SnapfileTemplate.swift
|
1623
|
+
- snapshot/lib/assets/SnapshotHelper.swift
|
1624
|
+
- snapshot/lib/assets/SnapshotHelperXcode8.swift
|
1625
|
+
- snapshot/lib/snapshot.rb
|
1626
|
+
- snapshot/lib/snapshot/collector.rb
|
1627
|
+
- snapshot/lib/snapshot/commands_generator.rb
|
1628
|
+
- snapshot/lib/snapshot/dependency_checker.rb
|
1629
|
+
- snapshot/lib/snapshot/detect_values.rb
|
1630
|
+
- snapshot/lib/snapshot/error_handler.rb
|
1631
|
+
- snapshot/lib/snapshot/fixes/README.md
|
1632
|
+
- snapshot/lib/snapshot/fixes/hardware_keyboard_fix.rb
|
1633
|
+
- snapshot/lib/snapshot/fixes/simulator_shared_pasteboard.rb
|
1634
|
+
- snapshot/lib/snapshot/fixes/simulator_zoom_fix.rb
|
1635
|
+
- snapshot/lib/snapshot/latest_os_version.rb
|
1636
|
+
- snapshot/lib/snapshot/module.rb
|
1637
|
+
- snapshot/lib/snapshot/options.rb
|
1638
|
+
- snapshot/lib/snapshot/page.html.erb
|
1639
|
+
- snapshot/lib/snapshot/reports_generator.rb
|
1640
|
+
- snapshot/lib/snapshot/reset_simulators.rb
|
1641
|
+
- snapshot/lib/snapshot/runner.rb
|
1642
|
+
- snapshot/lib/snapshot/screenshot_flatten.rb
|
1643
|
+
- snapshot/lib/snapshot/screenshot_rotate.rb
|
1644
|
+
- snapshot/lib/snapshot/setup.rb
|
1645
|
+
- snapshot/lib/snapshot/simulator_launchers/launcher_configuration.rb
|
1646
|
+
- snapshot/lib/snapshot/simulator_launchers/simulator_launcher.rb
|
1647
|
+
- snapshot/lib/snapshot/simulator_launchers/simulator_launcher_base.rb
|
1648
|
+
- snapshot/lib/snapshot/simulator_launchers/simulator_launcher_xcode_8.rb
|
1649
|
+
- snapshot/lib/snapshot/test_command_generator.rb
|
1650
|
+
- snapshot/lib/snapshot/test_command_generator_base.rb
|
1651
|
+
- snapshot/lib/snapshot/test_command_generator_xcode_8.rb
|
1652
|
+
- snapshot/lib/snapshot/update.rb
|
1653
|
+
- spaceship/README.md
|
1654
|
+
- spaceship/lib/assets/displayFamilies.json
|
1655
|
+
- spaceship/lib/assets/languageMapping.json
|
1656
|
+
- spaceship/lib/assets/languageMappingReadable.json
|
1657
|
+
- spaceship/lib/spaceship.rb
|
1658
|
+
- spaceship/lib/spaceship/base.rb
|
1659
|
+
- spaceship/lib/spaceship/client.rb
|
1660
|
+
- spaceship/lib/spaceship/commands_generator.rb
|
1661
|
+
- spaceship/lib/spaceship/connect_api.rb
|
1662
|
+
- spaceship/lib/spaceship/connect_api/api_client.rb
|
1663
|
+
- spaceship/lib/spaceship/connect_api/client.rb
|
1664
|
+
- spaceship/lib/spaceship/connect_api/file_uploader.rb
|
1665
|
+
- spaceship/lib/spaceship/connect_api/model.rb
|
1666
|
+
- spaceship/lib/spaceship/connect_api/models/actor.rb
|
1667
|
+
- spaceship/lib/spaceship/connect_api/models/age_rating_declaration.rb
|
1668
|
+
- spaceship/lib/spaceship/connect_api/models/app.rb
|
1669
|
+
- spaceship/lib/spaceship/connect_api/models/app_category.rb
|
1670
|
+
- spaceship/lib/spaceship/connect_api/models/app_data_usage.rb
|
1671
|
+
- spaceship/lib/spaceship/connect_api/models/app_data_usage_category.rb
|
1672
|
+
- spaceship/lib/spaceship/connect_api/models/app_data_usage_data_protection.rb
|
1673
|
+
- spaceship/lib/spaceship/connect_api/models/app_data_usage_grouping.rb
|
1674
|
+
- spaceship/lib/spaceship/connect_api/models/app_data_usage_purposes.rb
|
1675
|
+
- spaceship/lib/spaceship/connect_api/models/app_data_usages_publish_state.rb
|
1676
|
+
- spaceship/lib/spaceship/connect_api/models/app_info.rb
|
1677
|
+
- spaceship/lib/spaceship/connect_api/models/app_info_localization.rb
|
1678
|
+
- spaceship/lib/spaceship/connect_api/models/app_preview.rb
|
1679
|
+
- spaceship/lib/spaceship/connect_api/models/app_preview_set.rb
|
1680
|
+
- spaceship/lib/spaceship/connect_api/models/app_price.rb
|
1681
|
+
- spaceship/lib/spaceship/connect_api/models/app_price_point.rb
|
1682
|
+
- spaceship/lib/spaceship/connect_api/models/app_price_tier.rb
|
1683
|
+
- spaceship/lib/spaceship/connect_api/models/app_screenshot.rb
|
1684
|
+
- spaceship/lib/spaceship/connect_api/models/app_screenshot_set.rb
|
1685
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_review_attachment.rb
|
1686
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb
|
1687
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_version.rb
|
1688
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb
|
1689
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_version_phased_release.rb
|
1690
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_version_release_request.rb
|
1691
|
+
- spaceship/lib/spaceship/connect_api/models/app_store_version_submission.rb
|
1692
|
+
- spaceship/lib/spaceship/connect_api/models/beta_app_localization.rb
|
1693
|
+
- spaceship/lib/spaceship/connect_api/models/beta_app_review_detail.rb
|
1694
|
+
- spaceship/lib/spaceship/connect_api/models/beta_app_review_submission.rb
|
1695
|
+
- spaceship/lib/spaceship/connect_api/models/beta_build_localization.rb
|
1696
|
+
- spaceship/lib/spaceship/connect_api/models/beta_build_metric.rb
|
1697
|
+
- spaceship/lib/spaceship/connect_api/models/beta_feedback.rb
|
1698
|
+
- spaceship/lib/spaceship/connect_api/models/beta_group.rb
|
1699
|
+
- spaceship/lib/spaceship/connect_api/models/beta_screenshot.rb
|
1700
|
+
- spaceship/lib/spaceship/connect_api/models/beta_tester.rb
|
1701
|
+
- spaceship/lib/spaceship/connect_api/models/beta_tester_metric.rb
|
1702
|
+
- spaceship/lib/spaceship/connect_api/models/build.rb
|
1703
|
+
- spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
|
1704
|
+
- spaceship/lib/spaceship/connect_api/models/build_bundle.rb
|
1705
|
+
- spaceship/lib/spaceship/connect_api/models/build_bundle_file_sizes.rb
|
1706
|
+
- spaceship/lib/spaceship/connect_api/models/build_delivery.rb
|
1707
|
+
- spaceship/lib/spaceship/connect_api/models/bundle_id.rb
|
1708
|
+
- spaceship/lib/spaceship/connect_api/models/bundle_id_capability.rb
|
1709
|
+
- spaceship/lib/spaceship/connect_api/models/capabilities.rb
|
1710
|
+
- spaceship/lib/spaceship/connect_api/models/certificate.rb
|
1711
|
+
- spaceship/lib/spaceship/connect_api/models/custom_app_organization.rb
|
1712
|
+
- spaceship/lib/spaceship/connect_api/models/custom_app_user.rb
|
1713
|
+
- spaceship/lib/spaceship/connect_api/models/device.rb
|
1714
|
+
- spaceship/lib/spaceship/connect_api/models/idfa_declaration.rb
|
1715
|
+
- spaceship/lib/spaceship/connect_api/models/pre_release_version.rb
|
1716
|
+
- spaceship/lib/spaceship/connect_api/models/profile.rb
|
1717
|
+
- spaceship/lib/spaceship/connect_api/models/reset_ratings_request.rb
|
1718
|
+
- spaceship/lib/spaceship/connect_api/models/resolution_center_message.rb
|
1719
|
+
- spaceship/lib/spaceship/connect_api/models/resolution_center_thread.rb
|
1720
|
+
- spaceship/lib/spaceship/connect_api/models/review_rejection.rb
|
1721
|
+
- spaceship/lib/spaceship/connect_api/models/review_submission.rb
|
1722
|
+
- spaceship/lib/spaceship/connect_api/models/review_submission_item.rb
|
1723
|
+
- spaceship/lib/spaceship/connect_api/models/sandbox_tester.rb
|
1724
|
+
- spaceship/lib/spaceship/connect_api/models/territory.rb
|
1725
|
+
- spaceship/lib/spaceship/connect_api/models/user.rb
|
1726
|
+
- spaceship/lib/spaceship/connect_api/models/user_invitation.rb
|
1727
|
+
- spaceship/lib/spaceship/connect_api/provisioning/client.rb
|
1728
|
+
- spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb
|
1729
|
+
- spaceship/lib/spaceship/connect_api/response.rb
|
1730
|
+
- spaceship/lib/spaceship/connect_api/spaceship.rb
|
1731
|
+
- spaceship/lib/spaceship/connect_api/testflight/client.rb
|
1732
|
+
- spaceship/lib/spaceship/connect_api/testflight/testflight.rb
|
1733
|
+
- spaceship/lib/spaceship/connect_api/token.rb
|
1734
|
+
- spaceship/lib/spaceship/connect_api/token_refresh_middleware.rb
|
1735
|
+
- spaceship/lib/spaceship/connect_api/tunes/client.rb
|
1736
|
+
- spaceship/lib/spaceship/connect_api/tunes/tunes.rb
|
1737
|
+
- spaceship/lib/spaceship/connect_api/users/client.rb
|
1738
|
+
- spaceship/lib/spaceship/connect_api/users/users.rb
|
1739
|
+
- spaceship/lib/spaceship/du/du_client.rb
|
1740
|
+
- spaceship/lib/spaceship/du/upload_file.rb
|
1741
|
+
- spaceship/lib/spaceship/du/utilities.rb
|
1742
|
+
- spaceship/lib/spaceship/errors.rb
|
1743
|
+
- spaceship/lib/spaceship/globals.rb
|
1744
|
+
- spaceship/lib/spaceship/hashcash.rb
|
1745
|
+
- spaceship/lib/spaceship/helper/net_http_generic_request.rb
|
1746
|
+
- spaceship/lib/spaceship/helper/plist_middleware.rb
|
1747
|
+
- spaceship/lib/spaceship/helper/rels_middleware.rb
|
1748
|
+
- spaceship/lib/spaceship/launcher.rb
|
1749
|
+
- spaceship/lib/spaceship/module.rb
|
1750
|
+
- spaceship/lib/spaceship/playground.rb
|
1751
|
+
- spaceship/lib/spaceship/portal/app.rb
|
1752
|
+
- spaceship/lib/spaceship/portal/app_group.rb
|
1753
|
+
- spaceship/lib/spaceship/portal/app_service.rb
|
1754
|
+
- spaceship/lib/spaceship/portal/certificate.rb
|
1755
|
+
- spaceship/lib/spaceship/portal/cloud_container.rb
|
1756
|
+
- spaceship/lib/spaceship/portal/device.rb
|
1757
|
+
- spaceship/lib/spaceship/portal/invite.rb
|
1758
|
+
- spaceship/lib/spaceship/portal/key.rb
|
1759
|
+
- spaceship/lib/spaceship/portal/legacy_wrapper.rb
|
1760
|
+
- spaceship/lib/spaceship/portal/merchant.rb
|
1761
|
+
- spaceship/lib/spaceship/portal/passbook.rb
|
1762
|
+
- spaceship/lib/spaceship/portal/person.rb
|
1763
|
+
- spaceship/lib/spaceship/portal/persons.rb
|
1764
|
+
- spaceship/lib/spaceship/portal/portal.rb
|
1765
|
+
- spaceship/lib/spaceship/portal/portal_base.rb
|
1766
|
+
- spaceship/lib/spaceship/portal/portal_client.rb
|
1767
|
+
- spaceship/lib/spaceship/portal/provisioning_profile.rb
|
1768
|
+
- spaceship/lib/spaceship/portal/provisioning_profile_template.rb
|
1769
|
+
- spaceship/lib/spaceship/portal/spaceship.rb
|
1770
|
+
- spaceship/lib/spaceship/portal/ui/select_team.rb
|
1771
|
+
- spaceship/lib/spaceship/portal/website_push.rb
|
1772
|
+
- spaceship/lib/spaceship/provider.rb
|
1773
|
+
- spaceship/lib/spaceship/spaceauth_runner.rb
|
1774
|
+
- spaceship/lib/spaceship/stats_middleware.rb
|
1775
|
+
- spaceship/lib/spaceship/test_flight.rb
|
1776
|
+
- spaceship/lib/spaceship/test_flight/app_test_info.rb
|
1777
|
+
- spaceship/lib/spaceship/test_flight/base.rb
|
1778
|
+
- spaceship/lib/spaceship/test_flight/beta_review_info.rb
|
1779
|
+
- spaceship/lib/spaceship/test_flight/build.rb
|
1780
|
+
- spaceship/lib/spaceship/test_flight/build_trains.rb
|
1781
|
+
- spaceship/lib/spaceship/test_flight/client.rb
|
1782
|
+
- spaceship/lib/spaceship/test_flight/export_compliance.rb
|
1783
|
+
- spaceship/lib/spaceship/test_flight/group.rb
|
1784
|
+
- spaceship/lib/spaceship/test_flight/test_info.rb
|
1785
|
+
- spaceship/lib/spaceship/test_flight/tester.rb
|
1786
|
+
- spaceship/lib/spaceship/tunes/app_analytics.rb
|
1787
|
+
- spaceship/lib/spaceship/tunes/app_details.rb
|
1788
|
+
- spaceship/lib/spaceship/tunes/app_image.rb
|
1789
|
+
- spaceship/lib/spaceship/tunes/app_ratings.rb
|
1790
|
+
- spaceship/lib/spaceship/tunes/app_review.rb
|
1791
|
+
- spaceship/lib/spaceship/tunes/app_review_attachment.rb
|
1792
|
+
- spaceship/lib/spaceship/tunes/app_screenshot.rb
|
1793
|
+
- spaceship/lib/spaceship/tunes/app_status.rb
|
1794
|
+
- spaceship/lib/spaceship/tunes/app_submission.rb
|
1795
|
+
- spaceship/lib/spaceship/tunes/app_trailer.rb
|
1796
|
+
- spaceship/lib/spaceship/tunes/app_version.rb
|
1797
|
+
- spaceship/lib/spaceship/tunes/app_version_common.rb
|
1798
|
+
- spaceship/lib/spaceship/tunes/app_version_generated_promocodes.rb
|
1799
|
+
- spaceship/lib/spaceship/tunes/app_version_history.rb
|
1800
|
+
- spaceship/lib/spaceship/tunes/app_version_promocodes.rb
|
1801
|
+
- spaceship/lib/spaceship/tunes/app_version_ref.rb
|
1802
|
+
- spaceship/lib/spaceship/tunes/app_version_states_history.rb
|
1803
|
+
- spaceship/lib/spaceship/tunes/application.rb
|
1804
|
+
- spaceship/lib/spaceship/tunes/availability.rb
|
1805
|
+
- spaceship/lib/spaceship/tunes/b2b_organization.rb
|
1806
|
+
- spaceship/lib/spaceship/tunes/b2b_user.rb
|
1807
|
+
- spaceship/lib/spaceship/tunes/build.rb
|
1808
|
+
- spaceship/lib/spaceship/tunes/build_details.rb
|
1809
|
+
- spaceship/lib/spaceship/tunes/build_train.rb
|
1810
|
+
- spaceship/lib/spaceship/tunes/developer_response.rb
|
1811
|
+
- spaceship/lib/spaceship/tunes/device_type.rb
|
1812
|
+
- spaceship/lib/spaceship/tunes/display_family.rb
|
1813
|
+
- spaceship/lib/spaceship/tunes/errors.rb
|
1814
|
+
- spaceship/lib/spaceship/tunes/iap.rb
|
1815
|
+
- spaceship/lib/spaceship/tunes/iap_detail.rb
|
1816
|
+
- spaceship/lib/spaceship/tunes/iap_families.rb
|
1817
|
+
- spaceship/lib/spaceship/tunes/iap_family_details.rb
|
1818
|
+
- spaceship/lib/spaceship/tunes/iap_family_list.rb
|
1819
|
+
- spaceship/lib/spaceship/tunes/iap_list.rb
|
1820
|
+
- spaceship/lib/spaceship/tunes/iap_status.rb
|
1821
|
+
- spaceship/lib/spaceship/tunes/iap_subscription_pricing_info.rb
|
1822
|
+
- spaceship/lib/spaceship/tunes/iap_subscription_pricing_tier.rb
|
1823
|
+
- spaceship/lib/spaceship/tunes/iap_type.rb
|
1824
|
+
- spaceship/lib/spaceship/tunes/language_converter.rb
|
1825
|
+
- spaceship/lib/spaceship/tunes/language_item.rb
|
1826
|
+
- spaceship/lib/spaceship/tunes/legacy_wrapper.rb
|
1827
|
+
- spaceship/lib/spaceship/tunes/member.rb
|
1828
|
+
- spaceship/lib/spaceship/tunes/members.rb
|
1829
|
+
- spaceship/lib/spaceship/tunes/pricing_info.rb
|
1830
|
+
- spaceship/lib/spaceship/tunes/pricing_tier.rb
|
1831
|
+
- spaceship/lib/spaceship/tunes/sandbox_tester.rb
|
1832
|
+
- spaceship/lib/spaceship/tunes/spaceship.rb
|
1833
|
+
- spaceship/lib/spaceship/tunes/territory.rb
|
1834
|
+
- spaceship/lib/spaceship/tunes/transit_app_file.rb
|
1835
|
+
- spaceship/lib/spaceship/tunes/tunes.rb
|
1836
|
+
- spaceship/lib/spaceship/tunes/tunes_base.rb
|
1837
|
+
- spaceship/lib/spaceship/tunes/tunes_client.rb
|
1838
|
+
- spaceship/lib/spaceship/tunes/version_set.rb
|
1839
|
+
- spaceship/lib/spaceship/two_step_or_factor_client.rb
|
1840
|
+
- spaceship/lib/spaceship/ui.rb
|
1841
|
+
- spaceship/lib/spaceship/upgrade_2fa_later_client.rb
|
1842
|
+
- supply/README.md
|
1843
|
+
- supply/lib/supply.rb
|
1844
|
+
- supply/lib/supply/apk_listing.rb
|
1845
|
+
- supply/lib/supply/client.rb
|
1846
|
+
- supply/lib/supply/commands_generator.rb
|
1847
|
+
- supply/lib/supply/languages.rb
|
1848
|
+
- supply/lib/supply/listing.rb
|
1849
|
+
- supply/lib/supply/options.rb
|
1850
|
+
- supply/lib/supply/reader.rb
|
1851
|
+
- supply/lib/supply/release_listing.rb
|
1852
|
+
- supply/lib/supply/setup.rb
|
1853
|
+
- supply/lib/supply/uploader.rb
|
1854
|
+
- trainer/lib/assets/junit.xml.erb
|
1855
|
+
- trainer/lib/trainer.rb
|
1856
|
+
- trainer/lib/trainer/commands_generator.rb
|
1857
|
+
- trainer/lib/trainer/junit_generator.rb
|
1858
|
+
- trainer/lib/trainer/module.rb
|
1859
|
+
- trainer/lib/trainer/options.rb
|
1860
|
+
- trainer/lib/trainer/test_parser.rb
|
1861
|
+
- trainer/lib/trainer/xcresult.rb
|
1862
|
+
homepage: https://fastlane.tools
|
1863
|
+
licenses:
|
1864
|
+
- MIT
|
1865
|
+
metadata:
|
1866
|
+
bug_tracker_uri: https://github.com/fastlane/fastlane/issues
|
1867
|
+
changelog_uri: https://github.com/fastlane/fastlane/releases
|
1868
|
+
documentation_uri: https://docs.fastlane.tools/
|
1869
|
+
homepage_uri: https://fastlane.tools
|
1870
|
+
source_code_uri: https://github.com/dragan-novakovic/fastlane
|
1871
|
+
post_install_message:
|
1872
|
+
rdoc_options: []
|
1873
|
+
require_paths:
|
1874
|
+
- cert/lib
|
1875
|
+
- credentials_manager/lib
|
1876
|
+
- deliver/lib
|
1877
|
+
- fastlane/lib
|
1878
|
+
- fastlane_core/lib
|
1879
|
+
- frameit/lib
|
1880
|
+
- gym/lib
|
1881
|
+
- match/lib
|
1882
|
+
- pem/lib
|
1883
|
+
- pilot/lib
|
1884
|
+
- precheck/lib
|
1885
|
+
- produce/lib
|
1886
|
+
- scan/lib
|
1887
|
+
- screengrab/lib
|
1888
|
+
- sigh/lib
|
1889
|
+
- snapshot/lib
|
1890
|
+
- spaceship/lib
|
1891
|
+
- supply/lib
|
1892
|
+
- trainer/lib
|
1893
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1894
|
+
requirements:
|
1895
|
+
- - ">="
|
1896
|
+
- !ruby/object:Gem::Version
|
1897
|
+
version: '2.6'
|
1898
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1899
|
+
requirements:
|
1900
|
+
- - ">="
|
1901
|
+
- !ruby/object:Gem::Version
|
1902
|
+
version: '0'
|
1903
|
+
requirements: []
|
1904
|
+
rubygems_version: 3.2.3
|
1905
|
+
signing_key:
|
1906
|
+
specification_version: 4
|
1907
|
+
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1908
|
+
Android apps
|
1909
|
+
test_files: []
|