module FastlaneCore

Constants

ROOT
VERSION

Public Class Methods

fastlane_user_dir() click to toggle source

A directory that's being used to user-wide fastlane configs This directory is also used for the bundled fastlane

# File lib/fastlane_core.rb, line 45
def self.fastlane_user_dir
  path = File.expand_path(File.join("~", ".fastlane"))
  FileUtils.mkdir_p(path) unless File.directory?(path)
  return path
end