Sha256: 8f2ad569d7c9529e954be64522c09df6fbcd225bdf9bbc10fbbff9038c8bd300
Contents?: true
Size: 1.76 KB
Versions: 28
Compression:
Stored size: 1.76 KB
Contents
module Metanorma class Compile def validate_options(options) validate_type(options) validate_format(options) end def validate_type(options) unless options[:type] Util.log("[metanorma] Error: Please specify a standard type: "\ "#{@registry.supported_backends}.", :fatal) end stdtype = options[:type].to_sym load_flavor(stdtype) end def validate_format(options) unless options[:format] == :asciidoc Util.log("[metanorma] Error: Only source file format currently "\ "supported is 'asciidoc'.", :fatal) end end private def load_flavor(stdtype) flavor = "metanorma-#{stdtype}" unless @registry.supported_backends.include? stdtype Util.log("[metanorma] Info: Loading `#{flavor}` gem "\ "for standard type `#{stdtype}`.", :info) end require_flavor(flavor) unless @registry.supported_backends.include? stdtype Util.log("[metanorma] Error: The `#{flavor}` gem does not "\ "support the standard type #{stdtype}. Exiting.", :fatal) end end def require_flavor(flavor) require flavor Util.log("[metanorma] Info: gem `#{flavor}` loaded.", :info) rescue LoadError => e error_log = "#{Date.today}-error.log" File.write(error_log, e) msg = <<~MSG Error: #{e.message} Metanorma has encountered an exception. If this problem persists, please report this issue at the following link: * https://github.com/metanorma/metanorma/issues/new Please attach the #{error_log} file. Your valuable feedback is very much appreciated! - The Metanorma team MSG Util.log(msg, :fatal) end end end
Version data entries
28 entries across 28 versions & 1 rubygems