Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/quick_actions/extractor.rb')
-rw-r--r--lib/gitlab/quick_actions/extractor.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gitlab/quick_actions/extractor.rb b/lib/gitlab/quick_actions/extractor.rb
index 015dbe7063c..5cf79db83af 100644
--- a/lib/gitlab/quick_actions/extractor.rb
+++ b/lib/gitlab/quick_actions/extractor.rb
@@ -20,7 +20,7 @@ module Gitlab
.+?
\n```$
)
- }mix.freeze
+ }mix
INLINE_CODE_REGEX = %r{
(?<inline_code>
@@ -31,7 +31,7 @@ module Gitlab
`.+?`
)
- }mix.freeze
+ }mix
HTML_BLOCK_REGEX = %r{
(?<html>
@@ -44,7 +44,7 @@ module Gitlab
.+?
\n<\/[^>]+?>$
)
- }mix.freeze
+ }mix
QUOTE_BLOCK_REGEX = %r{
(?<html>
@@ -57,11 +57,11 @@ module Gitlab
.+?
\n>>>$
)
- }mix.freeze
+ }mix
EXCLUSION_REGEX = %r{
#{CODE_REGEX} | #{INLINE_CODE_REGEX} | #{HTML_BLOCK_REGEX} | #{QUOTE_BLOCK_REGEX}
- }mix.freeze
+ }mix
attr_reader :command_definitions, :keep_actions