1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove unneeded requires

This commit is contained in:
Rafael Mendonça França 2020-10-29 21:21:43 +00:00
parent 3c18a0cca8
commit 576fb33ba3
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948
4 changed files with 0 additions and 5 deletions

View file

@ -6,7 +6,6 @@ require "active_support/core_ext/object/blank"
require "active_support/key_generator"
require "active_support/message_verifier"
require "active_support/encrypted_configuration"
require "active_support/deprecation"
require "active_support/hash_with_indifferent_access"
require "active_support/configuration_file"
require "rails/engine"

View file

@ -1,6 +1,5 @@
# frozen_string_literal: true
require "active_support/deprecation"
require "active_support/core_ext/string/filters"
require "rails/command/environment_argument"

View file

@ -3,7 +3,6 @@
require "fileutils"
require "action_dispatch"
require "rails"
require "active_support/deprecation"
require "active_support/core_ext/string/filters"
require "active_support/core_ext/symbol/starts_ends_with"
require "rails/dev_caching"

View file

@ -1,7 +1,5 @@
# frozen_string_literal: true
require "active_support/deprecation"
module Rails
# Implements the logic behind <tt>Rails::Command::NotesCommand</tt>. See <tt>rails notes --help</tt> for usage information.
#