Module: Middleman::Sitemap::Queryable

Defined in:
lib/middleman-core/sitemap/queryable.rb

Overview

Defined Under Namespace

Modules: API Classes: Query, Selector

Constant Summary collapse

OPERATOR_MAPPING =
{
  'equal'   => :==,
  'gt'      => :>,
  'gte'     => :>=,
  'in'      => :in?,
  'include' => :include?,
  'lt'      => :<,
  'lte'     => :<=
}
VALID_OPERATORS =
OPERATOR_MAPPING.keys
FileNotFoundError =
Class.new StandardError
OperatorNotSupportedError =
Class.new StandardError