From 2edeab558e12ae3630114df0f06d3daa9b5f709b Mon Sep 17 00:00:00 2001 From: erwanlr Date: Sun, 24 Mar 2019 19:57:59 +0000 Subject: [PATCH] Adds ruby frozen_string_literal comment to profiling bins --- bin/wpscan-memprof | 1 + bin/wpscan-stackprof | 1 + 2 files changed, 2 insertions(+) diff --git a/bin/wpscan-memprof b/bin/wpscan-memprof index 2397ce7e..9b2e5202 100755 --- a/bin/wpscan-memprof +++ b/bin/wpscan-memprof @@ -1,4 +1,5 @@ #!/usr/bin/env ruby +# frozen_string_literal: true require 'memory_profiler' # https://github.com/SamSaffron/memory_profiler require 'wpscan' diff --git a/bin/wpscan-stackprof b/bin/wpscan-stackprof index 8e25adc6..07f2f05c 100755 --- a/bin/wpscan-stackprof +++ b/bin/wpscan-stackprof @@ -1,4 +1,5 @@ #!/usr/bin/env ruby +# frozen_string_literal: true require 'stackprof' # https://github.com/tmm1/stackprof require 'wpscan'