Sha256: 9a794a6c3a55bedc3082c232d2fb5ef51eb2c5b8d851d67ef3b0f0d9de9d0bbe

Contents?: true

Size: 1.08 KB

Versions: 5

Compression:

Stored size: 1.08 KB

Contents

module Jekyll
  module Maps
    class OptionsParser
      OPTIONS_SYNTAX     = %r!([^\s]+)\s*=\s*['"]+([^'"]+)['"]+!
      ALLOWED_FLAGS      = %w(
        no_cluster
      ).freeze
      ALLOWED_ATTRIBUTES = %w(
        id
        width
        height
        class
        show_marker
        show_popup
        zoom
        latitude
        longitude
        marker_title
        marker_img
        marker_url
      ).freeze

      class << self
        def parse(raw_options)
          options = {
            :attributes => {},
            :filters    => {},
            :flags      => {}
          }
          raw_options.scan(OPTIONS_SYNTAX).each do |key, value|
            value = value.split(",") if value.include?(",")
            if ALLOWED_ATTRIBUTES.include?(key)
              options[:attributes][key.to_sym] = value
            else
              options[:filters][key] = value
            end
          end
          ALLOWED_FLAGS.each do |key|
            options[:flags][key.to_sym] = true if raw_options.include?(key)
          end
          options
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
jekyll-maps-2.1.2 lib/jekyll-maps/options_parser.rb
jekyll-maps-debugging-2.1.1 lib/jekyll-maps/options_parser.rb
jekyll-maps-2.1.1 lib/jekyll-maps/options_parser.rb
jekyll-maps-2.1.0 lib/jekyll-maps/options_parser.rb
jekyll-maps-2.0.4 lib/jekyll-maps/options_parser.rb