Merge branch 'add-frozen-string-literal-to-community-contribution-files' into 'master'

Add frozen_string_literal to recently-added files from the community

See merge request gitlab-org/gitlab-ce!21132
This commit is contained in:
Robert Speicher 2018-08-10 16:37:49 +00:00
commit 6a6fbdec26
4 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
module Banzai
module Filter
# HTML filter that replaces project references with links.

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
module Banzai
module ReferenceParser
class ProjectParser < BaseParser

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Banzai::Filter::ProjectReferenceFilter do

View file

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'spec_helper'
describe Banzai::ReferenceParser::ProjectParser do