diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-03-16 12:00:41 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-03-17 18:50:55 +0900 |
commit | 4b285e5c6fe690c89ce71e9d68d87976ef2d65e1 () | |
tree | b2896cd9f6b820cee7c1a050068484a003e66fc0 /lib/rubygems/basic_specification.rb | |
parent | 9ffd73523db3c80237bd26099c9e11f9f6e3a444 (diff) |
[rubygems/rubygems] util/rubocop -A --only Layout/AssignmentIndentation
https://.com/rubygems/rubygems/commit/8e64298989
-rw-r--r-- | lib/rubygems/basic_specification.rb | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -144,15 +144,15 @@ class Gem::BasicSpecification def full_require_paths @full_require_paths ||= - begin - full_paths = raw_require_paths.map do |path| - File.join full_gem_path, path.tap(&Gem::UNTAINT) - end - full_paths << extension_dir if have_extensions? - full_paths - end end ## @@ -171,15 +171,15 @@ class Gem::BasicSpecification if activated? @paths_map ||= {} @paths_map[path] ||= - begin - fullpath = nil - suffixes = Gem.suffixes - suffixes.find do |suf| - full_require_paths.find do |dir| - File.file?(fullpath = "#{dir}/#{path}#{suf}") - end - end ? fullpath : nil - end else nil end |