Enable Style/EmptyLinesAroundClassBody rubocop cop.
This commit is contained in:
Hiroshi SHIBATA 2020-09-23 21:02:56 +09:00
parent f56fc720ee
commit 31a6eaabc1
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
274 changed files with 672 additions and 0 deletions

View file

@ -9,6 +9,7 @@ unless defined?(OpenSSL::SSL)
end
class TestGemRequest < Gem::TestCase
CA_CERT_FILE = cert_path 'ca'
CHILD_CERT = load_cert 'child'
EXPIRED_CERT = load_cert 'expired'
@ -487,6 +488,7 @@ ERROR: Certificate is an invalid CA certificate
end
class Conn
attr_accessor :payload
def new(*args); self; end
@ -505,5 +507,7 @@ ERROR: Certificate is an invalid CA certificate
self.payload = req
@response
end
end
end if defined?(OpenSSL::SSL)