summaryrefslogtreecommitdiff
path: root/lib/pry/pager.rb
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2019-05-03 01:33:56 +0300
committerKyrylo Silin <silin@kyrylo.org>2019-05-08 00:13:17 +0300
commit18c45d26c55a659461c13a5f423f1a5094a74571 (patch)
tree307045d706948d9edef92376f4335419cfc07a97 /lib/pry/pager.rb
parentfc3526d1393de4a0e4102099a3153311dff44be6 (diff)
downloadpry-18c45d26c55a659461c13a5f423f1a5094a74571.tar.gz
rubocop: enable the Style/FrozenStringLiteralComment cop
This will greatly ease Pry support on Ruby 3.0 (when it's out).
Diffstat (limited to 'lib/pry/pager.rb')
-rw-r--r--lib/pry/pager.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/pry/pager.rb b/lib/pry/pager.rb
index 4ebdcb66..966e06c1 100644
--- a/lib/pry/pager.rb
+++ b/lib/pry/pager.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
# A pager is an `IO`-like object that accepts text and either prints it
# immediately, prints it one page at a time, or streams it to an external
# program to print one page at a time.