[rubygems/rubygems] util/rubocop -A --only Layout/EmptyLinesAroundModuleBody

https://github.com/rubygems/rubygems/commit/48c88466b7
This commit is contained in:
Hiroshi SHIBATA 2023-03-16 11:49:24 +09:00
Родитель c480a0c46a
Коммит 583fbc627c
18 изменённых файлов: 0 добавлений и 29 удалений

Просмотреть файл

@ -38,5 +38,4 @@ module Gem
ConfigMap[key.to_sym] = RbConfig::CONFIG[key]
end
end
end

Просмотреть файл

@ -1,7 +1,6 @@
# frozen_string_literal: true
module Kernel
##
# Use Kernel#gem to activate a specific version of +gem_name+.
#
@ -66,5 +65,4 @@ module Kernel
end
private :gem
end

Просмотреть файл

@ -8,7 +8,6 @@
require "monitor"
module Kernel
RUBYGEMS_ACTIVATION_MONITOR = Monitor.new # :nodoc:
# Make sure we have a reference to Ruby's original Kernel#require
@ -164,5 +163,4 @@ module Kernel
end
private :require
end

Просмотреть файл

@ -69,7 +69,6 @@
# end
module Gem::Deprecate
def self.skip # :nodoc:
@skip ||= false
end
@ -160,5 +159,4 @@ module Gem::Deprecate
end
module_function :rubygems_deprecate, :rubygems_deprecate_command, :skip_during
end

Просмотреть файл

@ -6,7 +6,6 @@ require_relative "text"
# Utility methods for using the RubyGems API.
module Gem::GemcutterUtilities
ERROR_CODE = 1
API_SCOPES = %i[index_rubygems push_rubygem yank_rubygem add_owner remove_owner access_webhooks show_dashboard].freeze

Просмотреть файл

@ -195,5 +195,4 @@ module Gem::InstallUpdateOptions
def install_update_defaults_str
"--document=ri"
end
end

Просмотреть файл

@ -4,7 +4,6 @@
# Helper methods for both Gem::Installer and Gem::Uninstaller
module Gem::InstallerUninstallerUtils
def regenerate_plugins_for(spec, plugins_dir)
plugins = spec.plugins
return if plugins.empty?
@ -25,5 +24,4 @@ module Gem::InstallerUninstallerUtils
def remove_plugins_for(spec, plugins_dir)
FileUtils.rm_f Gem::Util.glob_files_in_dir("#{spec.name}#{Gem.plugin_suffix_pattern}", plugins_dir)
end
end

Просмотреть файл

@ -12,7 +12,6 @@ require_relative "../rubygems"
# Mixin methods for local and remote Gem::Command options.
module Gem::LocalRemoteOptions
##
# Allows Gem::OptionParser to handle HTTP URIs.
@ -144,5 +143,4 @@ module Gem::LocalRemoteOptions
def remote?
options[:domain] == :remote || options[:domain] == :both
end
end

Просмотреть файл

@ -27,7 +27,6 @@ class Gem::MockGemUi < Gem::StreamUI
class SystemExitException < RuntimeError; end
module TTY
attr_accessor :tty
def tty?()

Просмотреть файл

@ -6,7 +6,6 @@ require_relative "version_option"
require_relative "text"
module Gem::QueryUtils
include Gem::Text
include Gem::LocalRemoteOptions
include Gem::VersionOption
@ -347,5 +346,4 @@ module Gem::QueryUtils
summary = truncate_text(spec.summary, "the summary for #{spec.full_name}")
entry << "\n\n" << format_text(summary, 68, 4)
end
end

Просмотреть файл

@ -1,5 +1,4 @@
module Gem
###
# This module is used for safely loading YAML specs from a gem. The
# `safe_load` method defined on this module is specifically designed for

Просмотреть файл

@ -325,7 +325,6 @@ require_relative "openssl"
# http://pablotron.org/
module Gem::Security
##
# Gem::Security default exception type
@ -608,7 +607,6 @@ module Gem::Security
end
reset
end
if Gem::HAVE_OPENSSL

Просмотреть файл

@ -1,6 +1,5 @@
# frozen_string_literal: true
module Gem::Security
##
# No security policy: all package signature checks are disabled.
@ -111,5 +110,4 @@ module Gem::Security
"HighSecurity" => HighSecurity,
# SigningPolicy is not intended for use by `gem -P` so do not list it
}.freeze
end

Просмотреть файл

@ -4,7 +4,6 @@
# A collection of text-wrangling methods
module Gem::Text
##
# Remove any non-printable characters and make the text suitable for
# printing.

Просмотреть файл

@ -13,7 +13,6 @@ require_relative "text"
# module will have access to the +ui+ method that returns the default UI.
module Gem::DefaultUserInteraction
include Gem::Text
##
@ -68,7 +67,6 @@ module Gem::DefaultUserInteraction
def use_ui(new_ui, &block)
Gem::DefaultUserInteraction.use_ui(new_ui, &block)
end
end
##
@ -91,7 +89,6 @@ end
# end
module Gem::UserInteraction
include Gem::DefaultUserInteraction
##

Просмотреть файл

@ -5,7 +5,6 @@ require_relative "deprecate"
# This module contains various utility methods as module methods.
module Gem::Util
##
# Zlib::GzipReader wrapper that unzips +data+.
@ -111,5 +110,4 @@ module Gem::Util
path
end
end
end

Просмотреть файл

@ -11,7 +11,6 @@ require_relative "../rubygems"
# Mixin methods for --version and --platform Gem::Command options.
module Gem::VersionOption
##
# Add the --platform option to the option parser.

Просмотреть файл

@ -25,7 +25,6 @@ require "benchmark" # stdlib
require "rubygems/mock_gem_ui"
module Gem
##
# Allows setting the gem path searcher.