gitlab-org--gitlab-foss/lib/gitlab/markdown_cache.rb
Brett Walker ae862960b1 Bump the CACHE_COMMONMARK_VERSION
to ensure any markdown generated before the asset
proxy default was corrected is re-generated
2019-09-11 14:35:37 -05:00

12 lines
322 B
Ruby

# frozen_string_literal: true
module Gitlab
module MarkdownCache
# Increment this number every time the renderer changes its output
CACHE_COMMONMARK_VERSION = 18
CACHE_COMMONMARK_VERSION_START = 10
BaseError = Class.new(StandardError)
UnsupportedClassError = Class.new(BaseError)
end
end