repo stringlengths 5 92 | file_url stringlengths 80 287 | file_path stringlengths 5 197 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:37:27 2026-01-04 17:58:21 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_project_team.rb | fastlane/lib/fastlane/actions/update_project_team.rb | module Fastlane
module Actions
module SharedValues
end
class UpdateProjectTeamAction < Action
def self.run(params)
project_path = params[:path]
selected_targets = params[:targets]
UI.user_error!("Could not find path to xcodeproj '#{project_path}'. Pass the path to your proj... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/notify.rb | fastlane/lib/fastlane/actions/notify.rb | module Fastlane
module Actions
class NotifyAction < Action
def self.run(params)
require 'terminal-notifier'
UI.important("It's recommended to use the new 'notification' method instead of 'notify'")
text = params.join(' ')
TerminalNotifier.notify(text, title: 'fastlane')
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/appium.rb | fastlane/lib/fastlane/actions/appium.rb | module Fastlane
module Actions
class AppiumAction < Action
INVOKE_TIMEOUT = 30
APPIUM_PATH_HOMEBREW = '/usr/local/bin/appium'
APPIUM_APP_PATH = '/Applications/Appium.app'
APPIUM_APP_BUNDLE_PATH = 'Contents/Resources/node_modules/.bin/appium'
def self.run(params)
Actions.veri... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb | fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb | module Fastlane
module Actions
class CleanCocoapodsCacheAction < Action
def self.run(params)
Actions.verify_gem!('cocoapods')
cmd = ['pod cache clean']
cmd << params[:name].to_s if params[:name]
cmd << '--no-ansi' if params[:no_ansi]
cmd << '--verbose' if params[:ve... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_project_provisioning.rb | fastlane/lib/fastlane/actions/update_project_provisioning.rb | # coding: utf-8
module Fastlane
module Actions
module SharedValues
end
class UpdateProjectProvisioningAction < Action
ROOT_CERTIFICATE_URL = "https://www.apple.com/appleca/AppleIncRootCertificate.cer"
def self.run(params)
UI.message("You’re updating provisioning profiles directly in ... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/get_build_number_repository.rb | fastlane/lib/fastlane/actions/get_build_number_repository.rb | module Fastlane
module Actions
module SharedValues
BUILD_NUMBER_REPOSITORY = :BUILD_NUMBER_REPOSITORY
end
class GetBuildNumberRepositoryAction < Action
def self.is_svn?
Actions.sh('svn info')
return true
rescue
return false
end
def self.is_git?
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/download_universal_apk_from_google_play.rb | fastlane/lib/fastlane/actions/download_universal_apk_from_google_play.rb | require 'supply'
require 'supply/options'
module Fastlane
module Actions
class DownloadUniversalApkFromGooglePlayAction < Action
def self.run(params)
package_name = params[:package_name]
version_code = params[:version_code]
destination = params[:destination]
cert_sha = param... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_code_signing_settings.rb | fastlane/lib/fastlane/actions/update_code_signing_settings.rb | require 'xcodeproj'
module Fastlane
module Actions
class UpdateCodeSigningSettingsAction < Action
def self.run(params)
FastlaneCore::PrintTable.print_values(config: params, title: "Summary for code signing settings")
path = params[:path]
path = File.join(File.expand_path(path), "proj... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/add_git_tag.rb | fastlane/lib/fastlane/actions/add_git_tag.rb | module Fastlane
module Actions
# Adds a git tag to the current commit
class AddGitTagAction < Action
def self.run(options)
# lane name in lane_context could be nil because you can just call $fastlane add_git_tag which has no context
lane_name = Actions.lane_context[Actions::SharedValues:... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/bundle_install.rb | fastlane/lib/fastlane/actions/bundle_install.rb | module Fastlane
module Actions
class BundleInstallAction < Action
# rubocop:disable Metrics/PerceivedComplexity
def self.run(params)
if gemfile_exists?(params)
cmd = ['bundle install']
cmd << "--binstubs #{params[:binstubs]}" if params[:binstubs]
cmd << "--clean"... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/twitter.rb | fastlane/lib/fastlane/actions/twitter.rb | module Fastlane
module Actions
class TwitterAction < Action
def self.run(params)
Actions.verify_gem!("twitter")
require 'twitter'
client = Twitter::REST::Client.new do |config|
config.consumer_key = params[:consumer_key]
config.consumer_secret = params[... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/set_pod_key.rb | fastlane/lib/fastlane/actions/set_pod_key.rb | module Fastlane
module Actions
class SetPodKeyAction < Action
def self.run(params)
Actions.verify_gem!('cocoapods-keys')
cmd = []
cmd << ['bundle exec'] if params[:use_bundle_exec] && shell_out_should_use_bundle_exec?
cmd << ['pod keys set']
cmd << ["\"#{params[:key... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/appetize.rb | fastlane/lib/fastlane/actions/appetize.rb | module Fastlane
module Actions
module SharedValues
APPETIZE_PUBLIC_KEY = :APPETIZE_PUBLIC_KEY
APPETIZE_APP_URL = :APPETIZE_APP_URL
APPETIZE_MANAGE_URL = :APPETIZE_MANAGE_URL
APPETIZE_API_HOST = :APPETIZE_API_HOST
end
class AppetizeAction < Action
def self.is_supported?(platf... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb | fastlane/lib/fastlane/actions/get_ipa_info_plist_value.rb | module Fastlane
module Actions
module SharedValues
GET_IPA_INFO_PLIST_VALUE_CUSTOM_VALUE = :GET_IPA_INFO_PLIST_VALUE_CUSTOM_VALUE
end
class GetIpaInfoPlistValueAction < Action
def self.run(params)
ipa = File.expand_path(params[:ipa])
key = params[:key]
plist = Fastlane... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/capture_screenshots.rb | fastlane/lib/fastlane/actions/capture_screenshots.rb | module Fastlane
module Actions
require 'fastlane/actions/capture_ios_screenshots'
class CaptureScreenshotsAction < CaptureIosScreenshotsAction
#####################################################
# @!group Documentation
#####################################################
def self.d... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/google_play_track_version_codes.rb | fastlane/lib/fastlane/actions/google_play_track_version_codes.rb | module Fastlane
module Actions
class GooglePlayTrackVersionCodesAction < Action
# Supply::Options.available_options keys that apply to this action.
OPTIONS = [
:package_name,
:track,
:key,
:issuer,
:json_key,
:json_key_data,
:root_url,
:t... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/testfairy.rb | fastlane/lib/fastlane/actions/testfairy.rb | module Fastlane
module Actions
module SharedValues
TESTFAIRY_BUILD_URL = :TESTFAIRY_BUILD_URL
TESTFAIRY_DOWNLOAD_URL = :TESTFAIRY_DOWNLOAD_URL
TESTFAIRY_LANDING_PAGE = :TESTFAIRY_LANDING_PAGE
end
class TestfairyAction < Action
def self.upload_build(upload_url, ipa, options, timeou... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/cocoapods.rb | fastlane/lib/fastlane/actions/cocoapods.rb | module Fastlane
module Actions
class CocoapodsAction < Action
# rubocop:disable Metrics/PerceivedComplexity
def self.run(params)
Actions.verify_gem!('cocoapods')
cmd = []
unless params[:podfile].nil?
if params[:podfile].end_with?('Podfile')
podfile_folder... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/git_tag_exists.rb | fastlane/lib/fastlane/actions/git_tag_exists.rb | module Fastlane
module Actions
class GitTagExistsAction < Action
def self.run(params)
tag_ref = "refs/tags/#{params[:tag].shellescape}"
if params[:remote]
command = "git ls-remote -q --exit-code #{params[:remote_name].shellescape} #{tag_ref}"
else
command = "git r... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/hg_commit_version_bump.rb | fastlane/lib/fastlane/actions/hg_commit_version_bump.rb | module Fastlane
module Actions
# Commits version bump.
class HgCommitVersionBumpAction < Action
def self.run(params)
require 'xcodeproj'
require 'pathname'
require 'set'
require 'shellwords'
xcodeproj_path = params[:xcodeproj] ? File.expand_path(File.join('.', pa... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/xcode_select.rb | fastlane/lib/fastlane/actions/xcode_select.rb | module Fastlane
module Actions
# See: https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/xcode-select.1.html
#
# DESCRIPTION
# xcode-select controls the location of the developer directory used by xcrun(1), xcodebuild(1), cc(1),
# and other Xcode and BSD devel... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/ensure_env_vars.rb | fastlane/lib/fastlane/actions/ensure_env_vars.rb | module Fastlane
module Actions
class EnsureEnvVarsAction < Action
def self.run(params)
variables = params[:env_vars]
missing_variables = variables.select { |variable| ENV[variable].to_s.strip.empty? }
UI.user_error!("Missing environment variable(s) '#{missing_variables.join('\', \''... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/download_from_play_store.rb | fastlane/lib/fastlane/actions/download_from_play_store.rb | module Fastlane
module Actions
class DownloadFromPlayStoreAction < Action
def self.run(params)
require 'supply'
require 'supply/options'
Supply.config = params # we already have the finished config
require 'supply/setup'
Supply::Setup.new.perform_download
end
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/hg_push.rb | fastlane/lib/fastlane/actions/hg_push.rb | module Fastlane
module Actions
# Pushes commits to the remote hg repo
class HgPushAction < Action
def self.run(params)
command = ['hg', 'push']
command << '--force' if params[:force]
command << params[:destination] unless params[:destination].empty?
return command.join(... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/upload_to_testflight.rb | fastlane/lib/fastlane/actions/upload_to_testflight.rb | module Fastlane
module Actions
class UploadToTestflightAction < Action
def self.run(values)
require 'pilot'
require 'pilot/options'
distribute_only = values[:distribute_only]
changelog = Actions.lane_context[SharedValues::FL_CHANGELOG]
values[:changelog] ||= changel... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/sonar.rb | fastlane/lib/fastlane/actions/sonar.rb | module Fastlane
module Actions
class SonarAction < Action
def self.run(params)
verify_sonar_scanner_binary
command_prefix = [
'cd',
File.expand_path('.').shellescape,
'&&'
].join(' ')
sonar_scanner_args = []
sonar_scanner_args << "-Dpro... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/swiftlint.rb | fastlane/lib/fastlane/actions/swiftlint.rb | module Fastlane
module Actions
class SwiftlintAction < Action
def self.run(params)
if `which swiftlint`.to_s.length == 0 && params[:executable].nil? && !Helper.test?
UI.user_error!("You have to install swiftlint using `brew install swiftlint` or specify the executable path with the `:execu... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/dotgpg_environment.rb | fastlane/lib/fastlane/actions/dotgpg_environment.rb | module Fastlane
module Actions
module SharedValues
end
class DotgpgEnvironmentAction < Action
def self.run(options)
Actions.verify_gem!('dotgpg')
require 'dotgpg/environment'
UI.message("Reading secrets from #{options[:dotgpg_file]}")
Dotgpg::Environment.new(options... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/changelog_from_git_commits.rb | fastlane/lib/fastlane/actions/changelog_from_git_commits.rb | module Fastlane
module Actions
module SharedValues
FL_CHANGELOG ||= :FL_CHANGELOG
end
class ChangelogFromGitCommitsAction < Action
def self.run(params)
if params[:commits_count]
UI.success("Collecting the last #{params[:commits_count]} Git commits")
else
if... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/match_nuke.rb | fastlane/lib/fastlane/actions/match_nuke.rb | module Fastlane
module Actions
class MatchNukeAction < Action
def self.run(params)
require 'match'
params.load_configuration_file("Matchfile")
params[:api_key] ||= Actions.lane_context[SharedValues::APP_STORE_CONNECT_API_KEY]
cert_type = Match.cert_type_sym(params[:type])
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/dsym_zip.rb | fastlane/lib/fastlane/actions/dsym_zip.rb | require 'plist'
module Fastlane
module Actions
module SharedValues
DSYM_ZIP_PATH = :DSYM_ZIP_PATH
end
class DsymZipAction < Action
def self.run(params)
archive = params[:archive_path]
params[:dsym_path] ||= File.join("#{File.basename(archive, '.*')}.app.dSYM.zip")
ds... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb | fastlane/lib/fastlane/actions/latest_testflight_build_number.rb | require 'credentials_manager'
module Fastlane
module Actions
module SharedValues
LATEST_TESTFLIGHT_BUILD_NUMBER = :LATEST_TESTFLIGHT_BUILD_NUMBER
LATEST_TESTFLIGHT_VERSION = :LATEST_TESTFLIGHT_VERSION
end
class LatestTestflightBuildNumberAction < Action
def self.run(params)
bui... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/team_name.rb | fastlane/lib/fastlane/actions/team_name.rb | module Fastlane
module Actions
module SharedValues
end
class TeamNameAction < Action
def self.run(params)
params = nil unless params.kind_of?(Array)
team = (params || []).first
UI.user_error!("Please pass your Team Name (e.g. team_name 'Felix Krause')") unless team.to_s.leng... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/ipa.rb | fastlane/lib/fastlane/actions/ipa.rb | # rubocop:disable Lint/AssignmentInCondition
module Fastlane
module Actions
module SharedValues
IPA_OUTPUT_PATH ||= :IPA_OUTPUT_PATH # originally defined in BuildIosAppAction
DSYM_OUTPUT_PATH ||= :DSYM_OUTPUT_PATH # originally defined in BuildIosAppAction
end
ARGS_MAP = {
workspace: '-w... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb | fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb | require 'google/apis/playcustomapp_v1'
require 'supply'
module Fastlane
module Actions
class CreateAppOnManagedPlayStoreAction < Action
def self.run(params)
client = PlaycustomappClient.make_from_config(params: params)
FastlaneCore::PrintTable.print_values(
config: params,
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/slather.rb | fastlane/lib/fastlane/actions/slather.rb | module Fastlane
module Actions
class SlatherAction < Action
# https://github.com/SlatherOrg/slather/blob/v2.4.9/lib/slather/command/coverage_command.rb
ARGS_MAP = {
travis: '--travis',
travis_pro: '--travispro',
circleci: '--circleci',
jenkins: '--jenkins',
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/badge.rb | fastlane/lib/fastlane/actions/badge.rb | module Fastlane
module Actions
class BadgeAction < Action
def self.run(params)
UI.important('The badge action has been deprecated,')
UI.important('please checkout the badge plugin here:')
UI.important('https://github.com/HazAT/fastlane-plugin-badge')
Actions.verify_gem!('badg... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/setup_travis.rb | fastlane/lib/fastlane/actions/setup_travis.rb | module Fastlane
module Actions
class SetupTravisAction < Action
def self.run(params)
other_action.setup_ci(provider: "travis", force: params[:force])
end
#####################################################
# @!group Documentation
###########################################... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/ssh.rb | fastlane/lib/fastlane/actions/ssh.rb | module Fastlane
module Actions
module SharedValues
SSH_STDOUT_VALUE = :SSH_STDOUT_VALUE
SSH_STDERR_VALUE = :SSH_STDERR_VALUE
end
class SshAction < Action
def self.ssh_exec!(ssh, command, log = true)
stdout_data = ""
stderr_data = ""
exit_code = nil
exit_s... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/ensure_git_branch.rb | fastlane/lib/fastlane/actions/ensure_git_branch.rb | module Fastlane
module Actions
module SharedValues
end
# Raises an exception and stop the lane execution if the repo is not on a specific branch
class EnsureGitBranchAction < Action
def self.run(params)
branch = params[:branch]
branch_expr = /#{branch}/
if Actions.git_br... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/testflight.rb | fastlane/lib/fastlane/actions/testflight.rb | module Fastlane
module Actions
require 'fastlane/actions/upload_to_testflight'
class TestflightAction < UploadToTestflightAction
#####################################################
# @!group Documentation
#####################################################
def self.description
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/slack.rb | fastlane/lib/fastlane/actions/slack.rb | require 'fastlane/notification/slack'
# rubocop:disable Style/CaseEquality
# rubocop:disable Style/MultilineTernaryOperator
# rubocop:disable Style/NestedTernaryOperator
module Fastlane
module Actions
class SlackAction < Action
class Runner
def initialize(slack_url)
@notifier = Fastlane::... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb | fastlane/lib/fastlane/actions/update_icloud_container_identifiers.rb | module Fastlane
module Actions
module SharedValues
UPDATE_ICLOUD_CONTAINER_IDENTIFIERS = :UPDATE_ICLOUD_CONTAINER_IDENTIFIERS
end
class UpdateIcloudContainerIdentifiersAction < Action
require 'plist'
def self.run(params)
entitlements_file = params[:entitlements_file]
UI... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/git_commit.rb | fastlane/lib/fastlane/actions/git_commit.rb | module Fastlane
module Actions
class GitCommitAction < Action
def self.run(params)
paths = params[:path]
skip_git_hooks = params[:skip_git_hooks] ? ['--no-verify'] : []
if params[:allow_nothing_to_commit]
# Here we check if the path passed in parameter contains any modific... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/push_to_git_remote.rb | fastlane/lib/fastlane/actions/push_to_git_remote.rb | module Fastlane
module Actions
# Push local changes to the remote branch
class PushToGitRemoteAction < Action
def self.run(params)
# Find the local git branch using HEAD or fallback to CI's ENV git branch if you're in detached HEAD state
local_git_branch = Actions.git_branch_name_using_H... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/s3.rb | fastlane/lib/fastlane/actions/s3.rb | require 'fastlane/erb_template_helper'
require 'fastlane/helper/s3_client_helper'
require 'ostruct'
require 'uri'
require 'cgi'
module Fastlane
module Actions
module SharedValues
# Using ||= because these MAY be defined by the the
# preferred aws_s3 plugin
S3_IPA_OUTPUT_PATH ||= :S3_IPA_OUTPUT_... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/reset_simulator_contents.rb | fastlane/lib/fastlane/actions/reset_simulator_contents.rb | module Fastlane
module Actions
class ResetSimulatorContentsAction < Action
def self.run(params)
os_versions = params[:os_versions] || params[:ios]
reset_simulators(os_versions)
end
def self.reset_simulators(os_versions)
UI.verbose("Resetting simulator contents")
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/pem.rb | fastlane/lib/fastlane/actions/pem.rb | module Fastlane
module Actions
require 'fastlane/actions/get_push_certificate'
class PemAction < GetPushCertificateAction
#####################################################
# @!group Documentation
#####################################################
def self.description
"A... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/restore_file.rb | fastlane/lib/fastlane/actions/restore_file.rb | module Fastlane
module Actions
class RestoreFileAction < Action
def self.run(params)
path = params[:path]
backup_path = "#{path}.back"
UI.user_error!("Could not find file '#{backup_path}'") unless File.exist?(backup_path)
FileUtils.cp(backup_path, path, preserve: true)
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/git_pull.rb | fastlane/lib/fastlane/actions/git_pull.rb | module Fastlane
module Actions
class GitPullAction < Action
def self.run(params)
commands = []
unless params[:only_tags]
command = "git pull"
command << " --rebase" if params[:rebase]
commands += ["#{command} &&"]
end
commands += ["git fetch --... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb | fastlane/lib/fastlane/actions/make_changelog_from_jenkins.rb | module Fastlane
module Actions
module SharedValues
FL_CHANGELOG ||= :FL_CHANGELOG # originally defined in ChangelogFromGitCommitsAction
end
class MakeChangelogFromJenkinsAction < Action
def self.run(params)
require 'json'
require 'net/http'
changelog = ""
if ... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/debug.rb | fastlane/lib/fastlane/actions/debug.rb | module Fastlane
module Actions
class DebugAction < Action
def self.run(params)
puts("Lane Context".green)
puts(Actions.lane_context)
end
def self.description
"Print out an overview of the lane context values"
end
def self.is_supported?(platform)
true... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/pod_lib_lint.rb | fastlane/lib/fastlane/actions/pod_lib_lint.rb | module Fastlane
module Actions
class PodLibLintAction < Action
# rubocop:disable Metrics/PerceivedComplexity
def self.run(params)
command = []
command << "bundle exec" if params[:use_bundle_exec] && shell_out_should_use_bundle_exec?
command << "pod lib lint"
command <... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/capture_android_screenshots.rb | fastlane/lib/fastlane/actions/capture_android_screenshots.rb | module Fastlane
module Actions
module SharedValues
SCREENGRAB_OUTPUT_DIRECTORY = :SCREENGRAB_OUTPUT_DIRECTORY
end
class CaptureAndroidScreenshotsAction < Action
def self.run(params)
require 'screengrab'
Screengrab.config = params
Screengrab.android_environment = Scree... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/mailgun.rb | fastlane/lib/fastlane/actions/mailgun.rb | require 'fastlane/erb_template_helper'
module Fastlane
module Actions
class MailgunAction < Action
def self.is_supported?(platform)
true
end
def self.run(options)
Actions.verify_gem!('faraday')
Actions.verify_gem!('mime-types')
require 'faraday'
begin
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/appaloosa.rb | fastlane/lib/fastlane/actions/appaloosa.rb | module Fastlane
module Actions
class AppaloosaAction < Action
APPALOOSA_SERVER = 'https://www.appaloosa-store.com/api/v2'.freeze
def self.run(params)
api_key = params[:api_token]
store_id = params[:store_id]
binary = params[:binary]
remove_extra_screenshots_file(params[... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/app_store_connect_api_key.rb | fastlane/lib/fastlane/actions/app_store_connect_api_key.rb | require 'base64'
require 'spaceship'
module Fastlane
module Actions
module SharedValues
APP_STORE_CONNECT_API_KEY = :APP_STORE_CONNECT_API_KEY
end
class AppStoreConnectApiKeyAction < Action
def self.run(options)
key_id = options[:key_id]
issuer_id = options[:issuer_id]
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb | fastlane/lib/fastlane/actions/upload_symbols_to_sentry.rb | module Fastlane
module Actions
class UploadSymbolsToSentryAction < Action
def self.run(params)
# Warning about using new plugin
UI.important("It's recommended to use the official Sentry Fastlane plugin")
UI.important("GitHub: https://github.com/getsentry/fastlane-plugin-sentry")
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/xcodes.rb | fastlane/lib/fastlane/actions/xcodes.rb | module Fastlane
module Actions
module SharedValues
XCODES_XCODE_PATH = :XCODES_XCODE_PATH
end
class XcodesAction < Action
def self.run(params)
binary = params[:binary_path]
xcodes_raw_version = Actions.sh("#{binary} version", log: false)
xcodes_version = Gem::Version.n... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/lane_context.rb | fastlane/lib/fastlane/actions/lane_context.rb | module Fastlane
module Actions
class LaneContextAction < Action
def self.run(params)
Actions.lane_context
end
#####################################################
# @!group Documentation
#####################################################
def self.description
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/match.rb | fastlane/lib/fastlane/actions/match.rb | module Fastlane
module Actions
require 'fastlane/actions/sync_code_signing'
class MatchAction < SyncCodeSigningAction
#####################################################
# @!group Documentation
#####################################################
def self.description
"Alias... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/build_mac_app.rb | fastlane/lib/fastlane/actions/build_mac_app.rb | module Fastlane
module Actions
require 'fastlane/actions/build_app'
class BuildMacAppAction < BuildAppAction
# Gym::Options.available_options keys that don't apply to mac apps.
REJECT_OPTIONS = [
:ipa,
:skip_package_ipa,
:catalyst_platform
]
def self.run(params... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/backup_file.rb | fastlane/lib/fastlane/actions/backup_file.rb | module Fastlane
module Actions
class BackupFileAction < Action
def self.run(params)
path = params[:path]
FileUtils.cp(path, "#{path}.back", preserve: true)
UI.message("Successfully created a backup 💾")
end
def self.description
'This action backs up your file to ... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/get_github_release.rb | fastlane/lib/fastlane/actions/get_github_release.rb | module Fastlane
module Actions
module SharedValues
GET_GITHUB_RELEASE_INFO = :GET_GITHUB_RELEASE_INFO
end
class GetGithubReleaseAction < Action
def self.run(params)
UI.message("Getting release on GitHub (#{params[:server_url]}/#{params[:url]}: #{params[:version]})")
GithubApi... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/xctool.rb | fastlane/lib/fastlane/actions/xctool.rb | module Fastlane
module Actions
class XctoolAction < Action
def self.run(params)
UI.important("Have you seen the new 'scan' tool to run tests? https://docs.fastlane.tools/actions/scan/")
unless Helper.test?
UI.user_error!("xctool not installed, please install using `brew install xct... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/rocket.rb | fastlane/lib/fastlane/actions/rocket.rb | module Fastlane
module Actions
class RocketAction < Action
def self.run(params)
puts("
____
/ \\
| |
| |
| |
\\____/
| |
| |
| |
|____|
{| |}
| |
| |
| F |
| A ... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/copy_artifacts.rb | fastlane/lib/fastlane/actions/copy_artifacts.rb | require 'fileutils'
module Fastlane
module Actions
class CopyArtifactsAction < Action
def self.run(params)
# expand the path to make sure we can deal with relative paths
target_path = File.expand_path(params[:target_path])
# we want to make sure that our target folder exist already... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/pod_push.rb | fastlane/lib/fastlane/actions/pod_push.rb | module Fastlane
module Actions
class PodPushAction < Action
def self.run(params)
command = []
command << "bundle exec" if params[:use_bundle_exec] && shell_out_should_use_bundle_exec?
if params[:repo]
repo = params[:repo]
command << "pod repo push #{repo}"
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/scp.rb | fastlane/lib/fastlane/actions/scp.rb | module Fastlane
module Actions
module SharedValues
end
class ScpAction < Action
def self.run(params)
Actions.verify_gem!('net-scp')
require "net/scp"
ret = nil
Net::SCP.start(params[:host], params[:username], { port: params[:port].to_i, password: params[:password] })... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/adb.rb | fastlane/lib/fastlane/actions/adb.rb | module Fastlane
module Actions
module SharedValues
end
class AdbAction < Action
def self.run(params)
adb = Helper::AdbHelper.new(adb_path: params[:adb_path])
result = adb.trigger(command: params[:command], serial: params[:serial])
return result
end
#############... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/jazzy.rb | fastlane/lib/fastlane/actions/jazzy.rb | module Fastlane
module Actions
class JazzyAction < Action
def self.run(params)
Actions.verify_gem!('jazzy')
command = "jazzy"
command << " --config #{params[:config]}" if params[:config]
command << " --module-version #{params[:module_version]}" if params[:module_version]
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/setup_circle_ci.rb | fastlane/lib/fastlane/actions/setup_circle_ci.rb | module Fastlane
module Actions
class SetupCircleCiAction < Action
def self.run(params)
other_action.setup_ci(provider: "circleci", force: params[:force])
end
#####################################################
# @!group Documentation
#######################################... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/resign.rb | fastlane/lib/fastlane/actions/resign.rb | module Fastlane
module Actions
# Resigns the ipa
class ResignAction < Action
def self.run(params)
require 'sigh'
# try to resign the ipa
if Sigh::Resign.resign(params[:ipa], params[:signing_identity], params[:provisioning_profile], params[:entitlements], params[:version], params... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/scan.rb | fastlane/lib/fastlane/actions/scan.rb | module Fastlane
module Actions
require 'fastlane/actions/run_tests'
class ScanAction < RunTestsAction
#####################################################
# @!group Documentation
#####################################################
def self.description
"Alias for the `run_te... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/ensure_xcode_version.rb | fastlane/lib/fastlane/actions/ensure_xcode_version.rb | module Fastlane
module Actions
class EnsureXcodeVersionAction < Action
def self.run(params)
Actions.verify_gem!('xcode-install')
required_version = params[:version]
strict = params[:strict]
if required_version.to_s.length == 0
# The user didn't provide an Xcode ver... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/deliver.rb | fastlane/lib/fastlane/actions/deliver.rb | module Fastlane
module Actions
require 'fastlane/actions/upload_to_app_store'
class DeliverAction < UploadToAppStoreAction
#####################################################
# @!group Documentation
#####################################################
def self.description
"... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/install_on_device.rb | fastlane/lib/fastlane/actions/install_on_device.rb | module Fastlane
module Actions
module SharedValues
end
class InstallOnDeviceAction < Action
def self.run(params)
unless Helper.test?
UI.user_error!("ios-deploy not installed, see https://github.com/ios-control/ios-deploy for instructions") if `which ios-deploy`.length == 0
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/github_api.rb | fastlane/lib/fastlane/actions/github_api.rb | module Fastlane
module Actions
module SharedValues
GITHUB_API_STATUS_CODE = :GITHUB_API_STATUS_CODE
GITHUB_API_RESPONSE = :GITHUB_API_RESPONSE
GITHUB_API_JSON = :GITHUB_API_JSON
end
class GithubApiAction < Action
class << self
def run(params)
require 'json'
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/sourcedocs.rb | fastlane/lib/fastlane/actions/sourcedocs.rb | module Fastlane
module Actions
class SourcedocsAction < Action
def self.run(params)
UI.user_error!("You have to install sourcedocs using `brew install sourcedocs`") if `which sourcedocs`.to_s.length == 0 && !Helper.test?
command = "sourcedocs generate"
command << " --all-modules" i... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/clean_build_artifacts.rb | fastlane/lib/fastlane/actions/clean_build_artifacts.rb | module Fastlane
module Actions
class CleanBuildArtifactsAction < Action
def self.run(options)
paths = [
Actions.lane_context[Actions::SharedValues::IPA_OUTPUT_PATH],
Actions.lane_context[Actions::SharedValues::DSYM_OUTPUT_PATH],
Actions.lane_context[Actions::SharedValue... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb | fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb | module Fastlane
module Actions
class UploadSymbolsToCrashlyticsAction < Action
def self.run(params)
require 'tmpdir'
find_binary_path(params)
unless params[:app_id]
find_gsp_path(params)
find_api_token(params)
end
if !params[:app_id] && !params[:... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/ifttt.rb | fastlane/lib/fastlane/actions/ifttt.rb | module Fastlane
module Actions
class IftttAction < Action
def self.run(options)
require "net/http"
require "uri"
uri = URI.parse("https://maker.ifttt.com/trigger/#{options[:event_name]}/with/key/#{options[:api_key]}")
https = Net::HTTP.new(uri.host, uri.port)
https.u... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/hockey.rb | fastlane/lib/fastlane/actions/hockey.rb | module Fastlane
module Actions
module SharedValues
HOCKEY_DOWNLOAD_LINK = :HOCKEY_DOWNLOAD_LINK
HOCKEY_BUILD_INFORMATION = :HOCKEY_BUILD_INFORMATION # contains all keys/values from the HockeyApp API, like :title, :bundle_identifier
end
# rubocop:disable Metrics/ClassLength
class HockeyAct... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/team_id.rb | fastlane/lib/fastlane/actions/team_id.rb | module Fastlane
module Actions
module SharedValues
end
class TeamIdAction < Action
def self.run(params)
params = nil unless params.kind_of?(Array)
team = (params || []).first
UI.user_error!("Please pass your Team ID (e.g. team_id 'Q2CBPK58CA')") unless team.to_s.length > 0
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/gym.rb | fastlane/lib/fastlane/actions/gym.rb | module Fastlane
module Actions
require 'fastlane/actions/build_app'
class GymAction < BuildAppAction
def self.description
"Alias for the `build_app` action"
end
end
end
end
| ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/say.rb | fastlane/lib/fastlane/actions/say.rb | module Fastlane
module Actions
class SayAction < Action
def self.run(params)
text = params[:text]
text = text.join(' ')
text = text.tr("'", '"')
if params[:mute]
UI.message(text)
return text
else
Actions.sh("say '#{text}'")
end
... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/snapshot.rb | fastlane/lib/fastlane/actions/snapshot.rb | module Fastlane
module Actions
require 'fastlane/actions/capture_ios_screenshots'
class SnapshotAction < CaptureIosScreenshotsAction
#####################################################
# @!group Documentation
#####################################################
def self.description... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/create_xcframework.rb | fastlane/lib/fastlane/actions/create_xcframework.rb | module Fastlane
module Actions
module SharedValues
XCFRAMEWORK_PATH ||= :XCFRAMEWORK_PATH
end
class CreateXcframeworkAction < Action
PARAMETERS_TO_OPTIONS = { headers: '-headers', dsyms: '-debug-symbols' }
def self.run(params)
artifacts = normalized_artifact_info(params[:framew... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/import_certificate.rb | fastlane/lib/fastlane/actions/import_certificate.rb | require 'shellwords'
module Fastlane
module Actions
class ImportCertificateAction < Action
def self.run(params)
keychain_path = params[:keychain_path] || FastlaneCore::Helper.keychain_path(params[:keychain_name])
FastlaneCore::KeychainImporter.import_file(params[:certificate_path], keychai... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/deploygate.rb | fastlane/lib/fastlane/actions/deploygate.rb | module Fastlane
module Actions
module SharedValues
DEPLOYGATE_URL = :DEPLOYGATE_URL
DEPLOYGATE_REVISION = :DEPLOYGATE_REVISION # auto increment revision number
DEPLOYGATE_APP_INFO = :DEPLOYGATE_APP_INFO # contains app revision, bundle identifier, etc.
end
class DeploygateAction < Action... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/google_play_track_release_names.rb | fastlane/lib/fastlane/actions/google_play_track_release_names.rb | module Fastlane
module Actions
class GooglePlayTrackReleaseNamesAction < Action
# Supply::Options.available_options keys that apply to this action.
OPTIONS = [
:package_name,
:track,
:key,
:issuer,
:json_key,
:json_key_data,
:root_url,
:t... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/xcov.rb | fastlane/lib/fastlane/actions/xcov.rb | module Fastlane
module Actions
class XcovAction < Action
def self.run(values)
Actions.verify_gem!('xcov')
require 'xcov'
if values[:xccov_file_direct_path].nil? && (path = Actions.lane_context[SharedValues::SCAN_GENERATED_XCRESULT_PATH])
UI.verbose("Pulling xcov 'xccov_fil... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/puts.rb | fastlane/lib/fastlane/actions/puts.rb | module Fastlane
module Actions
class PutsAction < Action
def self.run(params)
# display text from the message param (most likely coming from Swift)
# if called like `puts 'hi'` then params won't be a configuration item, so we have to check
if params.kind_of?(FastlaneCore::Configurati... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/gradle.rb | fastlane/lib/fastlane/actions/gradle.rb | require 'pathname'
require 'shellwords'
module Fastlane
module Actions
module SharedValues
GRADLE_APK_OUTPUT_PATH = :GRADLE_APK_OUTPUT_PATH
GRADLE_ALL_APK_OUTPUT_PATHS = :GRADLE_ALL_APK_OUTPUT_PATHS
GRADLE_AAB_OUTPUT_PATH = :GRADLE_AAB_OUTPUT_PATH
GRADLE_ALL_AAB_OUTPUT_PATHS = :GRADLE_ALL... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/xcode_install.rb | fastlane/lib/fastlane/actions/xcode_install.rb | module Fastlane
module Actions
module SharedValues
XCODE_INSTALL_XCODE_PATH = :XCODE_INSTALL_XCODE_PATH
end
class XcodeInstallAction < Action
def self.run(params)
Actions.verify_gem!('xcode-install')
ENV["XCODE_INSTALL_USER"] = params[:username]
ENV["XCODE_INSTALL_TEA... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/apteligent.rb | fastlane/lib/fastlane/actions/apteligent.rb | module Fastlane
module Actions
class ApteligentAction < Action
def self.run(params)
command = []
command << "curl"
command += upload_options(params)
command << upload_url(params[:app_id].shellescape)
# Fastlane::Actions.sh has buffering issues, no progress bar is sho... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/prompt.rb | fastlane/lib/fastlane/actions/prompt.rb | module Fastlane
module Actions
class PromptAction < Action
def self.run(params)
if params[:boolean]
return params[:ci_input] unless UI.interactive?
return UI.confirm(params[:text])
end
UI.message(params[:text])
return params[:ci_input] unless UI.interact... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/splunkmint.rb | fastlane/lib/fastlane/actions/splunkmint.rb | module Fastlane
module Actions
class SplunkmintAction < Action
def self.run(params)
command = []
command << "curl"
command << verbose(params)
command += proxy_options(params)
command += upload_options(params)
command << upload_url
command << upload_pro... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/verify_pod_keys.rb | fastlane/lib/fastlane/actions/verify_pod_keys.rb | module Fastlane
module Actions
class VerifyPodKeysAction < Action
def self.run(params)
UI.message("Validating CocoaPods Keys")
options = plugin_options
target = options["target"] || ""
options["keys"].each do |key|
UI.message(" - #{key}")
validate(key, t... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
fastlane/fastlane | https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/automatic_code_signing.rb | fastlane/lib/fastlane/actions/automatic_code_signing.rb | require 'xcodeproj'
module Fastlane
module Actions
class AutomaticCodeSigningAction < Action
def self.run(params)
UI.deprecated("The `automatic_code_signing` action has been deprecated,")
UI.deprecated("Please use `update_code_signing_settings` action instead.")
FastlaneCore::PrintTa... | ruby | MIT | d1f6eb6228644936997aae1956d8036ea62cd5b4 | 2026-01-04T15:37:27.371479Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.