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:
authorSean McGivern <sean@gitlab.com>2018-08-10 14:41:01 +0300
committerSean McGivern <sean@gitlab.com>2018-08-10 14:41:01 +0300
commitad8158e460d04e9cf97f255daf26379a81bdda89 (patch)
treec04b3ae658b27848e25f905f436196246e3c9c9a /lib/banzai
parente5c0f495a4384157535fe768f04e984a85fd4d79 (diff)
Add frozen_string_literal to recently-added files from the community
Diffstat (limited to 'lib/banzai')
-rw-r--r--lib/banzai/filter/project_reference_filter.rb2
-rw-r--r--lib/banzai/reference_parser/project_parser.rb2
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/banzai/filter/project_reference_filter.rb b/lib/banzai/filter/project_reference_filter.rb
index fd2a86a6d45..83cf45097ed 100644
--- a/lib/banzai/filter/project_reference_filter.rb
+++ b/lib/banzai/filter/project_reference_filter.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module Banzai
module Filter
# HTML filter that replaces project references with links.
diff --git a/lib/banzai/reference_parser/project_parser.rb b/lib/banzai/reference_parser/project_parser.rb
index 2a33b00ddbd..b4e3a55b4f1 100644
--- a/lib/banzai/reference_parser/project_parser.rb
+++ b/lib/banzai/reference_parser/project_parser.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module Banzai
module ReferenceParser
class ProjectParser < BaseParser