Remove needless require "pp"

In Ruby 2.5 and later, `Kernel#pp` is automatically loaded.

https://bugs.ruby-lang.org/issues/14123

This changes remove the needless `require "pp"`.
This commit is contained in:
Tatsuya Hoshino 2019-11-06 22:38:55 +09:00
parent 803c6ba7b3
commit 41f0fb8c6e
5 changed files with 0 additions and 10 deletions

@ -29,8 +29,6 @@
require "active_support/dependencies"
require "active_model"
require "pp" # require 'pp' early to prevent hidden_methods from not picking up the pretty-print methods until too late
module Rails
class << self
def env

@ -24,8 +24,6 @@
require "active_model"
require "active_record"
require "pp" # require 'pp' early to prevent hidden_methods from not picking up the pretty-print methods until too late
ActiveSupport::Dependencies.hook!
Thread.abort_on_exception = true

@ -1,7 +1,6 @@
# frozen_string_literal: true
require "abstract_unit"
require "pp"
require "active_support/dependencies"
require "dependencies_test_helpers"

@ -405,7 +405,6 @@ def start &blk
if options[:debug]
$DEBUG = true
require 'pp'
p options[:server]
pp wrapped_app
pp app

@ -482,10 +482,6 @@ def helpers_paths #:nodoc:
config.helpers_paths
end
console do
require "pp"
end
console do
unless ::Kernel.private_method_defined?(:y)
require "psych/y"