Sha256: a34cdcd7e71b830478ddaccdf5d7e897c5834214921abd24eb8c6ea87bd2d539

Contents?: true

Size: 1.76 KB

Versions: 2

Compression:

Stored size: 1.76 KB

Contents

module Fastlane
  class Setup
    # Start the setup process
    def run(user: nil)
      if FastlaneCore::FastlaneFolder.setup? and !Helper.is_test?
        UI.important("fastlane is already set up at path #{FastlaneCore::FastlaneFolder.path}")
        return
      end

      platform = nil
      if is_ios?
        UI.message("Detected iOS/Mac project in current directory...")
        platform = :ios
      elsif is_android?
        UI.message("Detected Android project in current directory...")
        platform = :android
      else
        UI.important("Couldn't automatically detect the platform")
        val = UI.confirm("Is this project an iOS project?")
        platform = (val ? :ios : :android)
      end

      if platform == :ios
        SetupIos.new.run(user: user)
      elsif platform == :android
        SetupAndroid.new.run
      else
        UI.user_error!("Couldn't find platform '#{platform}'")
      end
    end

    def is_ios?
      (Dir["*.xcodeproj"] + Dir["*.xcworkspace"]).count > 0
    end

    def is_android?
      Dir["*.gradle"].count > 0
    end

    def show_analytics
      UI.message("fastlane will send the number of errors for each action to")
      UI.message("https://github.com/fastlane/enhancer to detect integration issues")
      UI.message("No sensitive/private information will be uploaded")
    end
  end
end

require 'fastlane/setup/setup_ios'
require 'fastlane/setup/setup_android'
require 'fastlane/setup/crashlytics_beta_ui'
require 'fastlane/setup/crashlytics_beta'
require 'fastlane/setup/crashlytics_project_parser'
require 'fastlane/setup/crashlytics_beta_info'
require 'fastlane/setup/crashlytics_beta_info_collector'
require 'fastlane/setup/crashlytics_beta_command_line_handler'
require 'fastlane/setup/crashlytics_beta_user_email_fetcher'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fastlane-2.24.0.beta.20170325010032 fastlane/lib/fastlane/setup/setup.rb
fastlane-2.23.0 fastlane/lib/fastlane/setup/setup.rb