Sha256: 21e43c568afcc8827f276976332cc0b088918895ea55a4e0c6d168ca4956e2e0

Contents?: true

Size: 1.15 KB

Versions: 5

Compression:

Stored size: 1.15 KB

Contents

require 'ruby-enum'
module CommonMarker
  # For Ruby::Enum, these must be classes, not modules
  module Config
    class Parse
      include Ruby::Enum

      define :DEFAULT, 0
      define :NORMALIZE, (1 << 8)
      define :VALIDATE_UTF8, (1 << 9)
      define :SMART, (1 << 10)
    end

    class Render
      include Ruby::Enum

      define :DEFAULT, 0
      define :SOURCEPOS, (1 << 1)
      define :HARDBREAKS, (1 << 2)
      define :SAFE, (1 << 3)
    end

    def self.process_options(option, type)
      type = Config.const_get(type.capitalize)
      if option.is_a?(Symbol)
        check_option(option, type)
        type.to_h[option]
      elsif option.is_a?(Array)
        option = [nil] if option.empty?
        # neckbearding around. the map will both check the opts and then bitwise-OR it
        option.map { |o| check_option(o, type); type.to_h[o] }.inject(0, :|)
      else
        raise TypeError, 'option type must be a valid symbol or array of symbols'
      end
    end

    def self.check_option(option, type)
      unless type.keys.include?(option)
        raise TypeError, "option ':#{option}' does not exist for #{type}"
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
commonmarker-0.14.9 lib/commonmarker/config.rb
commonmarker-0.14.8 lib/commonmarker/config.rb
commonmarker-0.14.7 lib/commonmarker/config.rb
commonmarker-0.14.6 lib/commonmarker/config.rb
commonmarker-0.14.5 lib/commonmarker/config.rb