Updates commonmark gem version to 1.1.5 which switches from libcmark-gfm to comrak/Rust.

git-svn-id: https://svn.redmine.org/redmine/trunk@23188 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu
2024-11-03 12:02:39 +00:00
parent 586020045b
commit da87320ebc
12 changed files with 32 additions and 31 deletions

View File

@@ -20,7 +20,7 @@
require_relative '../../../../../test_helper'
class Redmine::WikiFormatting::CommonMark::ApplicationHelperTest < Redmine::HelperTest
if Object.const_defined?(:CommonMarker)
if Object.const_defined?(:Commonmarker)
include ERB::Util

View File

@@ -19,7 +19,7 @@
require_relative '../../../../../test_helper'
if Object.const_defined?(:CommonMarker)
if Object.const_defined?(:Commonmarker)
require 'redmine/wiki_formatting/common_mark/external_links_filter'
class Redmine::WikiFormatting::CommonMark::ExternalLinksFilterTest < ActiveSupport::TestCase

View File

@@ -19,7 +19,7 @@
require_relative '../../../../../test_helper'
if Object.const_defined?(:CommonMarker)
if Object.const_defined?(:Commonmarker)
require 'redmine/wiki_formatting/common_mark/fixup_auto_links_filter'
class Redmine::WikiFormatting::CommonMark::FixupAutoLinksFilterTest < ActiveSupport::TestCase

View File

@@ -20,7 +20,7 @@
require_relative '../../../../../test_helper'
class Redmine::WikiFormatting::CommonMark::FormatterTest < ActionView::TestCase
if Object.const_defined?(:CommonMarker)
if Object.const_defined?(:Commonmarker)
def setup
@formatter = Redmine::WikiFormatting::CommonMark::Formatter

View File

@@ -19,7 +19,7 @@
require_relative '../../../../../test_helper'
if Object.const_defined?(:CommonMarker)
if Object.const_defined?(:Commonmarker)
require 'redmine/wiki_formatting/common_mark/markdown_filter'
class Redmine::WikiFormatting::CommonMark::MarkdownFilterTest < ActiveSupport::TestCase

View File

@@ -19,7 +19,7 @@
require_relative '../../../../../test_helper'
if Object.const_defined?(:CommonMarker)
if Object.const_defined?(:Commonmarker)
require 'redmine/wiki_formatting/common_mark/sanitization_filter'
class Redmine::WikiFormatting::CommonMark::SanitizationFilterTest < ActiveSupport::TestCase

View File

@@ -18,7 +18,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require_relative '../../../../../test_helper'
if Object.const_defined?(:CommonMarker)
if Object.const_defined?(:Commonmarker)
require 'redmine/wiki_formatting/common_mark/syntax_highlight_filter'
class Redmine::WikiFormatting::CommonMark::SyntaxHighlightFilterTest < ActiveSupport::TestCase