class Fastlane::CommandLineHandler

Public Class Methods

convert_value(value) click to toggle source

Helper to convert into the right data type

# File fastlane/lib/fastlane/command_line_handler.rb, line 41
def self.convert_value(value)
  return true if value == 'true' || value == 'yes'
  return false if value == 'false' || value == 'no'

  # Default case:
  return value
end
handle(args, options) click to toggle source

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)

# File fastlane/lib/fastlane/command_line_handler.rb, line 6
def self.handle(args, options)
  lane_parameters = {} # the parameters we'll pass to the lane
  platform_lane_info = [] # the part that's responsible for the lane/platform definition
  args.each do |current|
    if current.include?(":") # that's a key/value which we want to pass to the lane
      key, value = current.split(":", 2)
      UI.user_error!("Please pass values like this: key:value") unless key.length > 0
      value = convert_value(value)
      UI.verbose("Using #{key}: #{value}")
      lane_parameters[key.to_sym] = value
    else
      platform_lane_info << current
    end
  end

  platform = nil
  lane = platform_lane_info[1]
  if lane
    platform = platform_lane_info[0]
  else
    lane = platform_lane_info[0]
  end

  dot_env = Helper.test? ? nil : options.env

  if FastlaneCore::FastlaneFolder.swift?
    disable_runner_upgrades = options.disable_runner_upgrades || false
    swift_server_port = options.swift_server_port
    Fastlane::SwiftLaneManager.cruise_lane(lane, lane_parameters, dot_env, disable_runner_upgrades: disable_runner_upgrades, swift_server_port: swift_server_port)
  else
    Fastlane::LaneManager.cruise_lane(platform, lane, lane_parameters, dot_env)
  end
end