class Precheck::CommandsGenerator

Public Class Methods

start() click to toggle source
# File precheck/lib/precheck/commands_generator.rb, line 19
def self.start
  new.run
end

Public Instance Methods

run() click to toggle source
# File precheck/lib/precheck/commands_generator.rb, line 23
def run
  program :name, 'precheck'
  program :version, Fastlane::VERSION
  program :description, Precheck::DESCRIPTION
  program :help, "Author", "Joshua Liebowitz <taquitos@gmail.com>, @taquitos"
  program :help, "Website", "https://fastlane.tools"
  program :help, "Documentation", "https://docs.fastlane.tools/actions/precheck/"
  program :help_formatter, FastlaneCore::HelpFormatter

  global_option("--verbose") { FastlaneCore::Globals.verbose = true }

  command :check_metadata do |c|
    c.syntax = "fastlane precheck"
    c.description = Precheck::DESCRIPTION

    FastlaneCore::CommanderGenerator.new.generate(Precheck::Options.available_options, command: c)

    c.action do |_args, options|
      Precheck.config = FastlaneCore::Configuration.create(Precheck::Options.available_options, options.__hash__)
      Precheck::Runner.new.run
    end
  end

  command :init do |c|
    c.syntax = "fastlane precheck init"
    c.description = "Creates a new Precheckfile for you"
    c.action do |args, options|
      containing = FastlaneCore::Helper.fastlane_enabled_folder_path
      path = File.join(containing, Precheck.precheckfile_name)
      UI.user_error!("Precheckfile already exists") if File.exist?(path)

      is_swift_fastfile = args.include?("swift")
      if is_swift_fastfile
        path = File.join(containing, Precheck.precheckfile_name + ".swift")
        UI.user_error!("Precheckfile.swift already exists") if File.exist?(path)
      end

      if is_swift_fastfile
        template = File.read("#{Precheck::ROOT}/lib/assets/PrecheckfileTemplate.swift")
      else
        template = File.read("#{Precheck::ROOT}/lib/assets/PrecheckfileTemplate")
      end
      File.write(path, template)
      UI.success("Successfully created '#{path}'. Open the file using a code editor.")
    end
  end

  default_command(:check_metadata)

  run!
end