diff options
author | Hiroshi SHIBATA <[email protected]> | 2020-09-23 21:02:56 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-09-23 21:02:56 +0900 |
commit | 31a6eaabc165d8a222e176f2c809d90622d88ec2 () | |
tree | b5333db2c13888ede5062ccd8ecca649ea261b4c /lib/rubygems/security | |
parent | f56fc720ee8cd4b79824a1c3843058b662a302bd (diff) |
Manually merged from https://.com/rubygems/rubygems/pull/2636
Enable Style/EmptyLinesAroundClassBody rubocop cop.
-rw-r--r-- | lib/rubygems/security/policy.rb | 2 | ||||
-rw-r--r-- | lib/rubygems/security/signer.rb | 2 | ||||
-rw-r--r-- | lib/rubygems/security/trust_dir.rb | 2 |
3 files changed, 6 insertions, 0 deletions
@@ -8,6 +8,7 @@ require 'rubygems/user_interaction' # Gem::Security::Policies. class Gem::Security::Policy include Gem::UserInteraction attr_reader :name @@ -288,4 +289,5 @@ class Gem::Security::Policy end alias to_s name # :nodoc: end @@ -5,6 +5,7 @@ require "rubygems/user_interaction" class Gem::Security::Signer include Gem::UserInteraction ## @@ -201,4 +202,5 @@ class Gem::Security::Signer end end end end @@ -4,6 +4,7 @@ # verification. class Gem::Security::TrustDir ## # Default permissions for the trust directory and its contents @@ -114,4 +115,5 @@ class Gem::Security::TrustDir FileUtils.mkdir_p @dir, :mode => @permissions[:trust_dir] end end end |