# frozen_string_literal: true module NeetoCompliance class Runner def verifiers app_name == "neeto-auth-web" ? VerifiersList.neeto_auth : VerifiersList.neeto_apps end def process results = verifiers.map do |verifier| verifier.new.process end results.all? ? exit(0) : exit(1) end def auto_correct puts "Running auto_correct ...".yellow results = verifiers.map do |verifier| verifier.new.auto_correct! end puts %( Auto fixing got completed \n Please run bundle exec neeto-audit once again to fix other errors manually if any \n ).yellow results.all? ? exit(0) : exit(1) end def app_name @_app_name ||= `git config --get remote.origin.url`.split("/").last.strip.split(".git").first end end end