[rubygems/rubygems] Enable `Layout/EmptyLinesAroundAccessModifier`

https://github.com/rubygems/rubygems/commit/41b1cebc33
This commit is contained in:
David Rodríguez 2019-06-04 10:21:14 +02:00 коммит произвёл Hiroshi SHIBATA
Родитель 3cc814bdf6
Коммит 0817d95714
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
3 изменённых файлов: 3 добавлений и 0 удалений

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

@ -88,6 +88,7 @@ class Gem::Ext::ExtConfBuilder < Gem::Ext::Builder
end
private
def self.get_relative_path(path)
path[0..Dir.pwd.length - 1] = '.' if path.start_with?(Dir.pwd)
path

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

@ -1209,6 +1209,7 @@ Also, a list:
# Return the join path, with escaping backticks, dollars, and
# double-quotes. Unlike `shellescape`, equal-sign is not escaped.
private
def escape_path(*path)
path = File.join(*path)
if %r'\A[-+:/=@,.\w]+\z' =~ path

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

@ -604,6 +604,7 @@ class Gem::StreamUI
end
private
def locked_puts(message)
MUTEX.synchronize do
@out.puts message