@@ -224,7 +224,7 @@ def self.needs
224224 finish_resolve rs
225225 end
226226
227- def self . finish_resolve ( request_set = Gem ::RequestSet . new )
227+ def self . finish_resolve ( request_set = Gem ::RequestSet . new )
228228 request_set . import Gem ::Specification . unresolved_deps . values
229229 request_set . import Gem . loaded_specs . values . map { |s | Gem ::Dependency . new ( s . name , s . version ) }
230230
@@ -341,7 +341,7 @@ def self.binary_mode
341341 ##
342342 # The path where gem executables are to be installed.
343343
344- def self . bindir ( install_dir = Gem . dir )
344+ def self . bindir ( install_dir = Gem . dir )
345345 return File . join install_dir , "bin" unless
346346 install_dir . to_s == Gem . default_dir . to_s
347347 Gem . default_bindir
@@ -350,7 +350,7 @@ def self.bindir(install_dir=Gem.dir)
350350 ##
351351 # The path were rubygems plugins are to be installed.
352352
353- def self . plugindir ( install_dir = Gem . dir )
353+ def self . plugindir ( install_dir = Gem . dir )
354354 File . join install_dir , "plugins"
355355 end
356356
@@ -534,7 +534,7 @@ def self.extension_api_version # :nodoc:
534534 # Note that find_files will return all files even if they are from different
535535 # versions of the same gem. See also find_latest_files
536536
537- def self . find_files ( glob , check_load_path = true )
537+ def self . find_files ( glob , check_load_path = true )
538538 files = [ ]
539539
540540 files = find_files_from_load_path glob if check_load_path
@@ -571,7 +571,7 @@ def self.find_files_from_load_path(glob) # :nodoc:
571571 # Unlike find_files, find_latest_files will return only files from the
572572 # latest version of a gem.
573573
574- def self . find_latest_files ( glob , check_load_path = true )
574+ def self . find_latest_files ( glob , check_load_path = true )
575575 files = [ ]
576576
577577 files = find_files_from_load_path glob if check_load_path
0 commit comments