From d598e4fd937797a7f7778f5b4158ebf73139ce7f Mon Sep 17 00:00:00 2001 From: gfyoung Date: Sat, 6 Oct 2018 16:10:08 -0700 Subject: Enable more frozen string in lib/**/*.rb Enables frozen for the following: * lib/*.rb * lib/banzai/**/*.rb * lib/bitbucket/**/*.rb * lib/constraints/**/*.rb * lib/container_registry/**/*.rb * lib/declarative_policy/**/*.rb Partially addresses #47424. --- lib/constraints/feature_constrainer.rb | 2 ++ lib/constraints/group_url_constrainer.rb | 2 ++ lib/constraints/project_url_constrainer.rb | 2 ++ lib/constraints/user_url_constrainer.rb | 2 ++ 4 files changed, 8 insertions(+) (limited to 'lib/constraints') diff --git a/lib/constraints/feature_constrainer.rb b/lib/constraints/feature_constrainer.rb index 05d48b0f25a..ca4376a9d38 100644 --- a/lib/constraints/feature_constrainer.rb +++ b/lib/constraints/feature_constrainer.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module Constraints class FeatureConstrainer attr_reader :feature diff --git a/lib/constraints/group_url_constrainer.rb b/lib/constraints/group_url_constrainer.rb index 87649c50424..8a3f8d2faaf 100644 --- a/lib/constraints/group_url_constrainer.rb +++ b/lib/constraints/group_url_constrainer.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module Constraints class GroupUrlConstrainer def matches?(request) diff --git a/lib/constraints/project_url_constrainer.rb b/lib/constraints/project_url_constrainer.rb index 32aea98f0f7..eadfbf7bc01 100644 --- a/lib/constraints/project_url_constrainer.rb +++ b/lib/constraints/project_url_constrainer.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module Constraints class ProjectUrlConstrainer def matches?(request) diff --git a/lib/constraints/user_url_constrainer.rb b/lib/constraints/user_url_constrainer.rb index 8afa04d29a4..e763569cb2e 100644 --- a/lib/constraints/user_url_constrainer.rb +++ b/lib/constraints/user_url_constrainer.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module Constraints class UserUrlConstrainer def matches?(request) -- cgit v1.2.3