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/junit_generator.rb
fastlane/lib/fastlane/junit_generator.rb
module Fastlane class JUnitGenerator def self.generate(results) # JUnit file documentation: http://llg.cubic.org/docs/junit/ # And http://nelsonwells.net/2012/09/how-jenkins-ci-parses-and-displays-junit-output/ # And http://windyroad.com.au/dl/Open%20Source/JUnit.xsd containing_folder = E...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/configuration_helper.rb
fastlane/lib/fastlane/configuration_helper.rb
module Fastlane class ConfigurationHelper def self.parse(action, params) first_element = (action.available_options || []).first if first_element && first_element.kind_of?(FastlaneCore::ConfigItem) # default use case return FastlaneCore::Configuration.create(action.available_options, p...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/boolean.rb
fastlane/lib/fastlane/boolean.rb
module Fastlane class Boolean # Used in config item generation end end
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/cli_tools_distributor.rb
fastlane/lib/fastlane/cli_tools_distributor.rb
module Fastlane # This class is responsible for checking the ARGV # to see if the user wants to launch another fastlane # tool or fastlane itself class CLIToolsDistributor class << self def running_version_command? ARGV.include?('-v') || ARGV.include?('--version') end def running_...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/console.rb
fastlane/lib/fastlane/console.rb
require 'irb' module Fastlane # Opens an interactive developer console class Console def self.execute(args, options) ARGV.clear IRB.setup(nil) @irb = IRB::Irb.new(nil) IRB.conf[:MAIN_CONTEXT] = @irb.context IRB.conf[:PROMPT][:FASTLANE] = IRB.conf[:PROMPT][:SIMPLE].dup IRB.co...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/action_collector.rb
fastlane/lib/fastlane/action_collector.rb
module Fastlane class ActionCollector def show_message UI.message("Sending Crash/Success information. Learn more at https://docs.fastlane.tools/#metrics") UI.message("No personal/sensitive data is sent. Only sharing the following:") UI.message(launches) UI.message(@error) if @error U...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/commands_generator.rb
fastlane/lib/fastlane/commands_generator.rb
require 'commander' require 'fastlane/new_action' require 'fastlane_core/ui/help_formatter' HighLine.track_eof = false module Fastlane class CommandsGenerator include Commander::Methods def self.start # since at this point we haven't yet loaded commander # however we do want to log verbose info...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/runner.rb
fastlane/lib/fastlane/runner.rb
module Fastlane class Runner # Symbol for the current lane attr_accessor :current_lane # Symbol for the current platform attr_accessor :current_platform # @return [Hash] All the lanes available, first the platform, then the lane attr_accessor :lanes def full_lane_name [current_pla...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/one_off.rb
fastlane/lib/fastlane/one_off.rb
module Fastlane # Call actions without triggering a full lane class OneOff def self.execute(args: nil) action_parameters = {} action_name = nil args.each do |current| if current.include?(":") # that's a key/value which we want to pass to the lane key, value = current.split("...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/fast_file.rb
fastlane/lib/fastlane/fast_file.rb
require "rubygems/requirement" module Fastlane class FastFile # Stores all relevant information from the currently running process attr_accessor :runner # the platform in which we're currently in when parsing the Fastfile # This is used to identify the platform in which the lane is in attr_acces...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/lane_manager.rb
fastlane/lib/fastlane/lane_manager.rb
require_relative 'lane_manager_base.rb' module Fastlane class LaneManager < LaneManagerBase # @param platform The name of the platform to execute # @param lane_name The name of the lane to execute # @param parameters [Hash] The parameters passed from the command line to the lane # @param A custom Fas...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/swift_lane_manager.rb
fastlane/lib/fastlane/swift_lane_manager.rb
require_relative 'lane_manager_base.rb' require_relative 'swift_runner_upgrader.rb' module Fastlane class SwiftLaneManager < LaneManagerBase # @param lane_name The name of the lane to execute # @param parameters [Hash] The parameters passed from the command line to the lane def self.cruise_lane(lane, par...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/auto_complete.rb
fastlane/lib/fastlane/auto_complete.rb
require 'fileutils' module Fastlane # Enable tab auto completion class AutoComplete # This method copies the tab auto completion scripts to the user's home folder, # while optionally adding custom commands for which to enable auto complete # @param [Array] options An array of all options (e.g. --custom...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/features.rb
fastlane/lib/fastlane/features.rb
# Use this file as the place to register Feature switches for the fastlane_core project # FastlaneCore::Feature.register(env_var: 'YOUR_FEATURE_SWITCH_ENV_VAR', # description: 'Describe what this feature switch controls') FastlaneCore::Feature.register(env_var: 'FASTLANE_ENABLE_BETA_DELIVER...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/swift_fastlane_function.rb
fastlane/lib/fastlane/swift_fastlane_function.rb
module Fastlane class SwiftFunction attr_accessor :function_name attr_accessor :function_description attr_accessor :function_details attr_accessor :return_type attr_accessor :return_value attr_accessor :sample_return_value attr_accessor :param_names attr_accessor :param_descriptions ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/action.rb
fastlane/lib/fastlane/action.rb
require 'fastlane/actions/actions_helper' require 'forwardable' module Fastlane class Action AVAILABLE_CATEGORIES = [ :testing, :building, :screenshots, :project, :code_signing, :documentation, :beta, :push, :production, :source_control, :notifica...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/other_action.rb
fastlane/lib/fastlane/other_action.rb
module Fastlane # This class is used to call other actions from within actions # We use a separate class so that we can easily identify when # we have dependencies between actions class OtherAction attr_accessor :runner def initialize(runner) self.runner = runner end # Allows the user to...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/command_line_handler.rb
fastlane/lib/fastlane/command_line_handler.rb
module Fastlane class CommandLineHandler # This method handles command line inputs and properly transforms them to a usable format # @param [Array] args An array of all arguments (not options) # @param [Array] args A hash of all options (e.g. --env NAME) def self.handle(args, options) lane_param...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/fastlane_require.rb
fastlane/lib/fastlane/fastlane_require.rb
module Fastlane class FastlaneRequire class << self def install_gem_if_needed(gem_name: nil, require_gem: true) gem_require_name = format_gem_require_name(gem_name) # check if it's installed if gem_installed?(gem_name) UI.success("gem '#{gem_name}' is already installed") i...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/notification/slack.rb
fastlane/lib/fastlane/notification/slack.rb
module Fastlane module Notification class Slack def initialize(webhook_url) @webhook_url = webhook_url @client = Faraday.new do |conn| conn.use(Faraday::Response::RaiseError) end end # Overriding channel, icon_url, icon_emoji and username is only supported in l...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_keychain_access_groups.rb
fastlane/lib/fastlane/actions/update_keychain_access_groups.rb
module Fastlane module Actions module SharedValues KEYCHAIN_ACCESS_GROUPS = :KEYCHAIN_ACCESS_GROUPS end class UpdateKeychainAccessGroupsAction < Action require 'plist' def self.run(params) UI.message("Entitlements File: #{params[:entitlements_file]}") UI.message("New ke...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/build_app.rb
fastlane/lib/fastlane/actions/build_app.rb
module Fastlane module Actions module SharedValues IPA_OUTPUT_PATH ||= :IPA_OUTPUT_PATH PKG_OUTPUT_PATH ||= :PKG_OUTPUT_PATH DSYM_OUTPUT_PATH ||= :DSYM_OUTPUT_PATH XCODEBUILD_ARCHIVE ||= :XCODEBUILD_ARCHIVE # originally defined in XcodebuildAction end class BuildAppAction < Action...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/version_get_podspec.rb
fastlane/lib/fastlane/actions/version_get_podspec.rb
module Fastlane module Actions module SharedValues PODSPEC_VERSION_NUMBER ||= :PODSPEC_VERSION_NUMBER # originally defined in VersionBumpPodspecAction end class VersionGetPodspecAction < Action def self.run(params) podspec_path = params[:path] UI.user_error!("Could not find p...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/push_git_tags.rb
fastlane/lib/fastlane/actions/push_git_tags.rb
module Fastlane module Actions class PushGitTagsAction < Action def self.run(params) command = [ 'git', 'push', params[:remote] ] if params[:tag] command << "refs/tags/#{params[:tag].shellescape}" else command << '--tags' ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
fastlane/lib/fastlane/actions/capture_ios_screenshots.rb
module Fastlane module Actions module SharedValues SNAPSHOT_SCREENSHOTS_PATH = :SNAPSHOT_SCREENSHOTS_PATH end class CaptureIosScreenshotsAction < Action def self.run(params) return nil unless Helper.mac? require 'snapshot' Snapshot.config = params Snapshot::De...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/git_submodule_update.rb
fastlane/lib/fastlane/actions/git_submodule_update.rb
module Fastlane module Actions class GitSubmoduleUpdateAction < Action def self.run(params) commands = ["git submodule update"] commands += ["--init"] if params[:init] commands += ["--recursive"] if params[:recursive] Actions.sh(commands.join(' ')) end ##########...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/run_tests.rb
fastlane/lib/fastlane/actions/run_tests.rb
module Fastlane module Actions module SharedValues SCAN_DERIVED_DATA_PATH = :SCAN_DERIVED_DATA_PATH SCAN_GENERATED_PLIST_FILE = :SCAN_GENERATED_PLIST_FILE SCAN_GENERATED_PLIST_FILES = :SCAN_GENERATED_PLIST_FILES SCAN_GENERATED_XCRESULT_PATH = :SCAN_GENERATED_XCRESULT_PATH SCAN_ZIP_BU...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/import_from_git.rb
fastlane/lib/fastlane/actions/import_from_git.rb
module Fastlane module Actions class ImportFromGitAction < Action def self.run(params) # this is implemented in the fast_file.rb end ##################################################### # @!group Documentation ##################################################### def...
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_play_store_internal_app_sharing.rb
fastlane/lib/fastlane/actions/upload_to_play_store_internal_app_sharing.rb
module Fastlane module Actions class UploadToPlayStoreInternalAppSharingAction < Action def self.run(params) require 'supply' # If no APK params were provided, try to fill in the values from lane context, preferring # the multiple APKs over the single APK if set. if params[:...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/version_bump_podspec.rb
fastlane/lib/fastlane/actions/version_bump_podspec.rb
module Fastlane module Actions module SharedValues PODSPEC_VERSION_NUMBER ||= :PODSPEC_VERSION_NUMBER end class VersionBumpPodspecAction < Action def self.run(params) podspec_path = params[:path] UI.user_error!("Could not find podspec file at path #{podspec_path}") unless Fil...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/download.rb
fastlane/lib/fastlane/actions/download.rb
module Fastlane module Actions module SharedValues DOWNLOAD_CONTENT = :DOWNLOAD_CONTENT end class DownloadAction < Action def self.run(params) require 'net/http' begin result = Net::HTTP.get(URI(params[:url])) begin result = JSON.parse(result) ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/onesignal.rb
fastlane/lib/fastlane/actions/onesignal.rb
module Fastlane module Actions module SharedValues ONE_SIGNAL_APP_ID = :ONE_SIGNAL_APP_ID ONE_SIGNAL_APP_AUTH_KEY = :ONE_SIGNAL_APP_AUTH_KEY end class OnesignalAction < Action def self.run(params) require 'net/http' require 'uri' require 'base64' app_id ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_plist.rb
fastlane/lib/fastlane/actions/update_plist.rb
module Fastlane module Actions module SharedValues end class UpdatePlistAction < Action def self.run(params) require 'xcodeproj' if params[:plist_path].nil? UI.user_error!("You must specify a plist path") end # Read existing plist file plist_path ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/delete_keychain.rb
fastlane/lib/fastlane/actions/delete_keychain.rb
require 'shellwords' module Fastlane module Actions class DeleteKeychainAction < Action def self.run(params) original = Actions.lane_context[Actions::SharedValues::ORIGINAL_DEFAULT_KEYCHAIN] if params[:keychain_path] if File.exist?(params[:keychain_path]) keychain_pat...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/increment_version_number.rb
fastlane/lib/fastlane/actions/increment_version_number.rb
module Fastlane module Actions module SharedValues VERSION_NUMBER ||= :VERSION_NUMBER end class IncrementVersionNumberAction < Action require 'shellwords' def self.is_supported?(platform) [:ios, :mac].include?(platform) end def self.run(params) # More infor...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/notarize.rb
fastlane/lib/fastlane/actions/notarize.rb
module Fastlane module Actions class NotarizeAction < Action # rubocop:disable Metrics/PerceivedComplexity def self.run(params) package_path = params[:package] bundle_id = params[:bundle_id] skip_stapling = params[:skip_stapling] try_early_stapling = params[:try_early_s...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/commit_version_bump.rb
fastlane/lib/fastlane/actions/commit_version_bump.rb
require 'pathname' module Fastlane module Actions module SharedValues MODIFIED_FILES = :MODIFIED_FILES end class << self # Add an array of paths relative to the repo root or absolute paths that have been modified by # an action. # # :files: An array of paths relative to the...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/skip_docs.rb
fastlane/lib/fastlane/actions/skip_docs.rb
module Fastlane module Actions class SkipDocsAction < Action def self.run(params) ENV["FASTLANE_SKIP_DOCS"] = "1" end def self.step_text nil 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/rsync.rb
fastlane/lib/fastlane/actions/rsync.rb
module Fastlane module Actions module SharedValues end class RsyncAction < Action def self.run(params) rsync_cmd = ["rsync"] rsync_cmd << params[:extra] rsync_cmd << params[:source] rsync_cmd << params[:destination] Actions.sh(rsync_cmd.join(" ")) end ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/reset_git_repo.rb
fastlane/lib/fastlane/actions/reset_git_repo.rb
require 'shellwords' module Fastlane module Actions # Does a hard reset and clean on the repo class ResetGitRepoAction < Action def self.run(params) if params[:force] || Actions.lane_context[SharedValues::GIT_REPO_WAS_CLEAN_ON_START] paths = params[:files] return paths if H...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/register_devices.rb
fastlane/lib/fastlane/actions/register_devices.rb
require 'credentials_manager' module Fastlane module Actions class RegisterDevicesAction < Action def self.is_supported?(platform) [:ios, :mac].include?(platform) end def self.file_column_headers ['Device ID', 'Device Name', 'Device Platform'] end def self.run(para...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/sigh.rb
fastlane/lib/fastlane/actions/sigh.rb
module Fastlane module Actions require 'fastlane/actions/get_provisioning_profile' class SighAction < GetProvisioningProfileAction ##################################################### # @!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/artifactory.rb
fastlane/lib/fastlane/actions/artifactory.rb
module Fastlane module Actions module SharedValues ARTIFACTORY_DOWNLOAD_URL = :ARTIFACTORY_DOWNLOAD_URL ARTIFACTORY_DOWNLOAD_SIZE = :ARTIFACTORY_DOWNLOAD_SIZE end class ArtifactoryAction < Action def self.run(params) Actions.verify_gem!('artifactory') require 'artifacto...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/last_git_commit.rb
fastlane/lib/fastlane/actions/last_git_commit.rb
module Fastlane module Actions class LastGitCommitAction < Action def self.run(params) Actions.last_git_commit_dict end ##################################################### # @!group Documentation ##################################################### def self.descrip...
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.rb
fastlane/lib/fastlane/actions/get_build_number.rb
module Fastlane module Actions module SharedValues BUILD_NUMBER ||= :BUILD_NUMBER # originally defined in IncrementBuildNumberAction end class GetBuildNumberAction < Action require 'shellwords' def self.run(params) # More information about how to set up your project and how it ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb
fastlane/lib/fastlane/actions/update_urban_airship_configuration.rb
module Fastlane module Actions class UpdateUrbanAirshipConfigurationAction < Action def self.run(params) require "plist" begin path = File.expand_path(params[:plist_path]) plist = Plist.parse_xml(path) plist['developmentAppKey'] = params[:development_app_key] u...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/xcode_server_get_assets.rb
fastlane/lib/fastlane/actions/xcode_server_get_assets.rb
module Fastlane module Actions module SharedValues XCODE_SERVER_GET_ASSETS_PATH = :XCODE_SERVER_GET_ASSETS_PATH XCODE_SERVER_GET_ASSETS_ARCHIVE_PATH = :XCODE_SERVER_GET_ASSETS_ARCHIVE_PATH end class XcodeServerGetAssetsAction < Action require 'excon' require 'json' require '...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/gcovr.rb
fastlane/lib/fastlane/actions/gcovr.rb
module Fastlane module Actions # --object-directory=OBJDIR Specify the directory that contains the gcov data files. # -o OUTPUT, --output=OUTPUT Print output to this filename Keep the temporary *.gcov files generated by gcov. # -k, --keep Keep the temporary *.gcov files genera...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/hg_add_tag.rb
fastlane/lib/fastlane/actions/hg_add_tag.rb
module Fastlane module Actions # Adds a hg tag to the current commit class HgAddTagAction < Action def self.run(options) tag = options[:tag] UI.message("Adding mercurial tag '#{tag}' 🎯.") command = "hg tag \"#{tag}\"" return command if Helper.test? Actions.sh(...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/verify_build.rb
fastlane/lib/fastlane/actions/verify_build.rb
require 'plist' module Fastlane module Actions class VerifyBuildAction < Action def self.run(params) Dir.mktmpdir do |dir| app_path = self.app_path(params, dir) values = self.gather_cert_info(app_path) values = self.update_with_profile_info(app_path, values) ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_fastlane.rb
fastlane/lib/fastlane/actions/update_fastlane.rb
require 'rubygems/spec_fetcher' require 'rubygems/command_manager' module Fastlane module Actions # Makes sure fastlane tools are up-to-date when running fastlane class UpdateFastlaneAction < Action ALL_TOOLS = ["fastlane"] def self.run(options) return if options[:no_update] # this is us...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/get_info_plist_value.rb
fastlane/lib/fastlane/actions/get_info_plist_value.rb
module Fastlane module Actions module SharedValues GET_INFO_PLIST_VALUE_CUSTOM_VALUE = :GET_INFO_PLIST_VALUE_CUSTOM_VALUE end class GetInfoPlistValueAction < Action def self.run(params) require "plist" begin path = File.expand_path(params[:path]) plist = ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/installr.rb
fastlane/lib/fastlane/actions/installr.rb
module Fastlane module Actions module SharedValues INSTALLR_BUILD_INFORMATION = :INSTALLR_BUILD_INFORMATION end class InstallrAction < Action INSTALLR_API = "https://www.installrapp.com/apps.json" def self.run(params) UI.success('Upload to Installr has been started. This may ta...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/last_git_tag.rb
fastlane/lib/fastlane/actions/last_git_tag.rb
module Fastlane module Actions class LastGitTagAction < Action def self.run(params) Actions.last_git_tag_name(true, params[:pattern]) 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/appledoc.rb
fastlane/lib/fastlane/actions/appledoc.rb
module Fastlane module Actions module SharedValues APPLEDOC_DOCUMENTATION_OUTPUT = :APPLEDOC_DOCUMENTATION_OUTPUT end class AppledocAction < Action ARGS_MAP = { input: "", output: "--output", templates: "--templates", docset_install_path: "--docset-install-path...
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_code_signing.rb
fastlane/lib/fastlane/actions/update_project_code_signing.rb
module Fastlane module Actions module SharedValues end class UpdateProjectCodeSigningAction < Action def self.run(params) UI.message("You shouldn't use update_project_code_signing") UI.message("Have you considered using the recommended way to do code signing?") UI.message("h...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/oclint.rb
fastlane/lib/fastlane/actions/oclint.rb
module Fastlane module Actions module SharedValues FL_OCLINT_REPORT_PATH = :FL_OCLINT_REPORT_PATH end class OclintAction < Action # rubocop:disable Metrics/PerceivedComplexity def self.run(params) oclint_path = params[:oclint_path] if `which #{oclint_path}`.to_s.empty? &...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/build_ios_app.rb
fastlane/lib/fastlane/actions/build_ios_app.rb
module Fastlane module Actions require 'fastlane/actions/build_app' class BuildIosAppAction < BuildAppAction # Gym::Options.available_options keys that don't apply to ios apps. REJECT_OPTIONS = [ :pkg, :skip_package_pkg, :catalyst_platform, :installer_cert_name ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/println.rb
fastlane/lib/fastlane/actions/println.rb
module Fastlane module Actions require 'fastlane/actions/puts' class PrintlnAction < PutsAction ##################################################### # @!group Documentation ##################################################### def self.description "Alias for the `puts` action...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/nexus_upload.rb
fastlane/lib/fastlane/actions/nexus_upload.rb
module Fastlane module Actions class NexusUploadAction < Action def self.run(params) command = [] command << "curl" command << verbose(params) command << "--fail" command += ssl_options(params) command += proxy_options(params) command += upload_options...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/echo.rb
fastlane/lib/fastlane/actions/echo.rb
module Fastlane module Actions require 'fastlane/actions/puts' class EchoAction < PutsAction ##################################################### # @!group Documentation ##################################################### def self.description "Alias for the `puts` action" ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/flock.rb
fastlane/lib/fastlane/actions/flock.rb
module Fastlane module Actions class FlockAction < Action BASE_URL = 'https://api.flock.co/hooks/sendMessage'.freeze def self.run(options) require 'net/http' require 'uri' require 'json' notify_incoming_message_webhook(options[:base_url], options[:message], options[:t...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/supply.rb
fastlane/lib/fastlane/actions/supply.rb
module Fastlane module Actions require 'fastlane/actions/upload_to_play_store' class SupplyAction < UploadToPlayStoreAction ##################################################### # @!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/default_platform.rb
fastlane/lib/fastlane/actions/default_platform.rb
module Fastlane module Actions module SharedValues DEFAULT_PLATFORM = :DEFAULT_PLATFORM end class DefaultPlatformAction < Action def self.run(params) UI.user_error!("You forgot to pass the default platform") if params.first.nil? platform = params.first.to_sym Support...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/appstore.rb
fastlane/lib/fastlane/actions/appstore.rb
module Fastlane module Actions require 'fastlane/actions/upload_to_app_store' class AppstoreAction < 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/git_remote_branch.rb
fastlane/lib/fastlane/actions/git_remote_branch.rb
module Fastlane module Actions class GitRemoteBranchAction < Action def self.run(params) Actions.git_remote_branch_name(params[:remote_name]) 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/appetize_viewing_url_generator.rb
fastlane/lib/fastlane/actions/appetize_viewing_url_generator.rb
module Fastlane module Actions module SharedValues end class AppetizeViewingUrlGeneratorAction < Action def self.run(params) link = "#{params[:base_url]}/#{params[:public_key]}" if params[:scale].nil? # sensible default values for scaling case params[:device].downcase.to_...
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_build_number.rb
fastlane/lib/fastlane/actions/app_store_build_number.rb
require 'ostruct' module Fastlane module Actions module SharedValues LATEST_BUILD_NUMBER = :LATEST_BUILD_NUMBER LATEST_VERSION = :LATEST_VERSION end class AppStoreBuildNumberAction < Action def self.run(params) build_v, build_nr = get_build_version_and_number(params) A...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/hg_ensure_clean_status.rb
fastlane/lib/fastlane/actions/hg_ensure_clean_status.rb
module Fastlane module Actions module SharedValues HG_REPO_WAS_CLEAN_ON_START = :HG_REPO_WAS_CLEAN_ON_START end # Raises an exception and stop the lane execution if the repo is not in a clean state class HgEnsureCleanStatusAction < Action def self.run(params) repo_clean = `hg statu...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/typetalk.rb
fastlane/lib/fastlane/actions/typetalk.rb
module Fastlane module Actions class TypetalkAction < Action def self.run(params) options = { message: nil, note_path: nil, success: true, topic_id: nil, typetalk_token: nil }.merge(params || {}) [:message, :topic_id, :type...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/set_build_number_repository.rb
fastlane/lib/fastlane/actions/set_build_number_repository.rb
module Fastlane module Actions module SharedValues end class SetBuildNumberRepositoryAction < Action def self.is_supported?(platform) [:ios, :mac].include?(platform) end def self.run(params) build_number = Fastlane::Actions::GetBuildNumberRepositoryAction.run( ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/xcversion.rb
fastlane/lib/fastlane/actions/xcversion.rb
module Fastlane module Actions class XcversionAction < Action def self.run(params) Actions.verify_gem!('xcode-install') version = params[:version] xcode = Helper::XcversionHelper.find_xcode(version) UI.user_error!("Cannot find an installed Xcode satisfying '#{version}'") if...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/get_version_number.rb
fastlane/lib/fastlane/actions/get_version_number.rb
module Fastlane module Actions module SharedValues VERSION_NUMBER ||= :VERSION_NUMBER # originally defined in IncrementVersionNumberAction end class GetVersionNumberAction < Action require 'shellwords' def self.run(params) xcodeproj_path_or_dir = params[:xcodeproj] || '.' ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/is_ci.rb
fastlane/lib/fastlane/actions/is_ci.rb
module Fastlane module Actions class IsCiAction < Action def self.run(params) Helper.ci? end ##################################################### # @!group Documentation ##################################################### def self.description "Is the curren...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/precheck.rb
fastlane/lib/fastlane/actions/precheck.rb
module Fastlane module Actions require 'fastlane/actions/check_app_store_metadata' class PrecheckAction < CheckAppStoreMetadataAction ##################################################### # @!group Documentation ##################################################### def self.descriptio...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/install_provisioning_profile.rb
fastlane/lib/fastlane/actions/install_provisioning_profile.rb
require 'shellwords' module Fastlane module Actions class InstallProvisioningProfileAction < Action def self.run(params) absolute_path = File.expand_path(params[:path]) FastlaneCore::ProvisioningProfile.install(absolute_path) end def self.description "Install provisioni...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/spaceship_logs.rb
fastlane/lib/fastlane/actions/spaceship_logs.rb
module Fastlane module Actions class SpaceshipLogsAction < Action def self.run(params) latest = params[:latest] print_contents = params[:print_contents] print_paths = params[:print_paths] copy_to_path = params[:copy_to_path] copy_to_clipboard = params[:copy_to_clipboa...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/ensure_no_debug_code.rb
fastlane/lib/fastlane/actions/ensure_no_debug_code.rb
module Fastlane module Actions class EnsureNoDebugCodeAction < Action def self.run(params) command = "grep -RE '#{params[:text]}' '#{File.absolute_path(params[:path])}'" extensions = [] extensions << params[:extension] unless params[:extension].nil? if params[:extensions] ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/spm.rb
fastlane/lib/fastlane/actions/spm.rb
module Fastlane module Actions class SpmAction < Action def self.run(params) cmd = ["swift"] cmd << (package_commands.include?(params[:command]) ? "package" : params[:command]) cmd << "--scratch-path #{params[:scratch_path]}" if params[:scratch_path] cmd << "--build-path #{p...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/produce.rb
fastlane/lib/fastlane/actions/produce.rb
module Fastlane module Actions require 'fastlane/actions/create_app_online' class ProduceAction < CreateAppOnlineAction ##################################################### # @!group Documentation ##################################################### def self.description "Ali...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/min_fastlane_version.rb
fastlane/lib/fastlane/actions/min_fastlane_version.rb
module Fastlane module Actions module SharedValues end class MinFastlaneVersionAction < Action def self.run(params) params = nil unless params.kind_of?(Array) value = (params || []).first defined_version = Gem::Version.new(value) if value UI.user_error!("Please pass...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/update_app_group_identifiers.rb
fastlane/lib/fastlane/actions/update_app_group_identifiers.rb
module Fastlane module Actions module SharedValues APP_GROUP_IDENTIFIERS = :APP_GROUP_IDENTIFIERS end class UpdateAppGroupIdentifiersAction < Action require 'plist' def self.run(params) UI.message("Entitlements File: #{params[:entitlements_file]}") UI.message("New App G...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/ensure_bundle_exec.rb
fastlane/lib/fastlane/actions/ensure_bundle_exec.rb
module Fastlane module Actions module SharedValues end # Raises an exception and stop the lane execution if not using bundle exec to run fastlane class EnsureBundleExecAction < Action def self.run(params) return if PluginManager.new.gemfile_path.nil? if FastlaneCore::Helper.bund...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/xcodebuild.rb
fastlane/lib/fastlane/actions/xcodebuild.rb
# rubocop:disable all module Fastlane module Actions module SharedValues XCODEBUILD_ARCHIVE ||= :XCODEBUILD_ARCHIVE XCODEBUILD_DERIVED_DATA_PATH = :XCODEBUILD_DERIVED_DATA_PATH end # xcodebuild man page: # https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/podio_item.rb
fastlane/lib/fastlane/actions/podio_item.rb
module Fastlane module Actions module SharedValues PODIO_ITEM_URL = :PODIO_ITEM_URL end class PodioItemAction < Action AUTH_URL = 'https://podio.com/oauth/token' BASE_URL = 'https://api.podio.com' def self.run(params) require 'rest_client' require 'json' r...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/check_app_store_metadata.rb
fastlane/lib/fastlane/actions/check_app_store_metadata.rb
module Fastlane module Actions module SharedValues end class CheckAppStoreMetadataAction < Action def self.run(config) # Only set :api_key from SharedValues if :api_key_path isn't set (conflicting options) unless config[:api_key_path] config[:api_key] ||= Actions.lane_cont...
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_status_clean.rb
fastlane/lib/fastlane/actions/ensure_git_status_clean.rb
module Fastlane module Actions module SharedValues GIT_REPO_WAS_CLEAN_ON_START = :GIT_REPO_WAS_CLEAN_ON_START end # Raises an exception and stop the lane execution if the repo is not in a clean state class EnsureGitStatusCleanAction < Action def self.run(params) # Build command ...
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_online.rb
fastlane/lib/fastlane/actions/create_app_online.rb
module Fastlane module Actions module SharedValues PRODUCE_APPLE_ID = :PRODUCE_APPLE_ID end class CreateAppOnlineAction < Action def self.run(params) require 'produce' return if Helper.test? Produce.config = params # we already have the finished config Dir.c...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/unlock_keychain.rb
fastlane/lib/fastlane/actions/unlock_keychain.rb
module Fastlane module Actions class UnlockKeychainAction < Action def self.run(params) keychain_path = FastlaneCore::Helper.keychain_path(params[:path]) add_to_search_list = params[:add_to_search_list] set_default = params[:set_default] commands = [] # add to search...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/get_push_certificate.rb
fastlane/lib/fastlane/actions/get_push_certificate.rb
module Fastlane module Actions class GetPushCertificateAction < Action def self.run(params) require 'pem' require 'pem/options' require 'pem/manager' success_block = params[:new_profile] PEM.config = params if Helper.test? profile_path = './test.p...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/git_branch.rb
fastlane/lib/fastlane/actions/git_branch.rb
module Fastlane module Actions class GitBranchAction < Action def self.run(params) branch = Actions.git_branch || "" return "" if branch == "HEAD" # Backwards compatibility with the original (and documented) implementation branch end #####################################...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/verify_xcode.rb
fastlane/lib/fastlane/actions/verify_xcode.rb
require 'shellwords' module Fastlane module Actions module SharedValues end class VerifyXcodeAction < Action def self.run(params) UI.message("Verifying your Xcode installation at path '#{params[:xcode_path]}'...") # Check 1/2 verify_codesign(params) # Check 2/2 ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/set_github_release.rb
fastlane/lib/fastlane/actions/set_github_release.rb
module Fastlane module Actions module SharedValues SET_GITHUB_RELEASE_HTML_LINK = :SET_GITHUB_RELEASE_HTML_LINK SET_GITHUB_RELEASE_RELEASE_ID = :SET_GITHUB_RELEASE_RELEASE_ID SET_GITHUB_RELEASE_JSON = :SET_GITHUB_RELEASE_JSON end class SetGithubReleaseAction < Action def self.run(...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/read_podspec.rb
fastlane/lib/fastlane/actions/read_podspec.rb
module Fastlane module Actions module SharedValues READ_PODSPEC_JSON = :READ_PODSPEC_JSON end class ReadPodspecAction < Action def self.run(params) Actions.verify_gem!('cocoapods') path = params[:path] require 'cocoapods-core' spec = Pod::Spec.from_file(path)...
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_play_store.rb
fastlane/lib/fastlane/actions/upload_to_play_store.rb
module Fastlane module Actions class UploadToPlayStoreAction < Action def self.run(params) require 'supply' require 'supply/options' # If no APK params were provided, try to fill in the values from lane context, preferring # the multiple APKs over the single APK if set. ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/screengrab.rb
fastlane/lib/fastlane/actions/screengrab.rb
module Fastlane module Actions require 'fastlane/actions/capture_android_screenshots' class ScreengrabAction < CaptureAndroidScreenshotsAction ##################################################### # @!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/zip.rb
fastlane/lib/fastlane/actions/zip.rb
module Fastlane module Actions class ZipAction < Action class Runner attr_reader :output_path, :path, :verbose, :password, :symlinks, :include, :exclude def initialize(params) @output_path = File.expand_path(params[:output_path] || params[:path]) @path = params[:path] ...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/get_provisioning_profile.rb
fastlane/lib/fastlane/actions/get_provisioning_profile.rb
module Fastlane module Actions module SharedValues SIGH_PROFILE_PATH = :SIGH_PROFILE_PATH SIGH_PROFILE_PATHS = :SIGH_PROFILE_PATHS SIGH_UDID = :SIGH_UDID # deprecated SIGH_UUID = :SIGH_UUID SIGH_NAME = :SIGH_NAME SIGH_PROFILE_TYPE ||= :SIGH_PROFILE_TYPE end class GetPr...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/tryouts.rb
fastlane/lib/fastlane/actions/tryouts.rb
module Fastlane module Actions module SharedValues # Contains all the data returned from the Tryouts API. See http://tryouts.readthedocs.org/en/latest/releases.html#create-release TRYOUTS_BUILD_INFORMATION = :TRYOUTS_BUILD_INFORMATION end class TryoutsAction < Action TRYOUTS_API_BUILD_RE...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false
fastlane/fastlane
https://github.com/fastlane/fastlane/blob/d1f6eb6228644936997aae1956d8036ea62cd5b4/fastlane/lib/fastlane/actions/spaceship_stats.rb
fastlane/lib/fastlane/actions/spaceship_stats.rb
module Fastlane module Actions class SpaceshipStatsAction < Action def self.run(params) require 'fastlane_core/print_table' require 'spaceship' rows = [] Spaceship::StatsMiddleware.service_stats.each do |service, count| rows << [service.name, service.auth_type, ser...
ruby
MIT
d1f6eb6228644936997aae1956d8036ea62cd5b4
2026-01-04T15:37:27.371479Z
false