Module: FastlaneCore
- Defined in:
- lib/fastlane_core.rb,
lib/fastlane_core/ui/ui.rb,
lib/fastlane_core/helper.rb,
lib/fastlane_core/project.rb,
lib/fastlane_core/version.rb,
lib/fastlane_core/languages.rb,
lib/fastlane_core/print_table.rb,
lib/fastlane_core/cert_checker.rb,
lib/fastlane_core/ui/interface.rb,
lib/fastlane_core/device_manager.rb,
lib/fastlane_core/tool_collector.rb,
lib/fastlane_core/fastlane_folder.rb,
lib/fastlane_core/feature/feature.rb,
lib/fastlane_core/command_executor.rb,
lib/fastlane_core/ipa_file_analyser.rb,
lib/fastlane_core/itunes_search_api.rb,
lib/fastlane_core/keychain_importer.rb,
lib/fastlane_core/pkg_file_analyser.rb,
lib/fastlane_core/itunes_transporter.rb,
lib/fastlane_core/provisioning_profile.rb,
lib/fastlane_core/ui/implementations/shell.rb,
lib/fastlane_core/update_checker/changelog.rb,
lib/fastlane_core/configuration/config_item.rb,
lib/fastlane_core/ipa_upload_package_builder.rb,
lib/fastlane_core/pkg_upload_package_builder.rb,
lib/fastlane_core/configuration/configuration.rb,
lib/fastlane_core/update_checker/update_checker.rb,
lib/fastlane_core/xcodebuild_list_output_parser.rb,
lib/fastlane_core/configuration/configuration_file.rb,
lib/fastlane_core/configuration/commander_generator.rb
Defined Under Namespace
Modules: Helper, Languages Classes: CertChecker, Changelog, CommandExecutor, CommanderGenerator, ConfigItem, Configuration, ConfigurationFile, DeviceManager, FastlaneFolder, Feature, Interface, IpaFileAnalyser, IpaUploadPackageBuilder, ItunesSearchApi, ItunesTransporter, JavaTransporterExecutor, KeychainImporter, PkgFileAnalyser, PkgUploadPackageBuilder, PrintTable, Project, ProvisioningProfile, Shell, ShellScriptTransporterExecutor, Simulator, SimulatorTV, SimulatorWatch, ToolCollector, TransporterExecutor, TransporterInputError, TransporterRequiresApplicationSpecificPasswordError, TransporterTransferError, UI, UpdateChecker, XcodebuildListOutputParser
Constant Summary collapse
- ROOT =
Pathname.new(File.('../..', __FILE__))
- VERSION =
"0.58.0".freeze
Class Method Summary collapse
-
.fastlane_user_dir ⇒ Object
A directory that’s being used to user-wide fastlane configs This directory is also used for the bundled fastlane.
Class Method Details
.fastlane_user_dir ⇒ Object
A directory that’s being used to user-wide fastlane configs This directory is also used for the bundled fastlane
43 44 45 46 47 |
# File 'lib/fastlane_core.rb', line 43 def self.fastlane_user_dir path = File.(File.join("~", ".fastlane")) FileUtils.mkdir_p(path) unless File.directory?(path) return path end |