class Bundler::Thor::LineEditor::Readline::PathCompletion
def absolute_matches
def absolute_matches Dir[glob_pattern].map do |path| if File.directory?(path) "#{path}/" else path end end end
def absolute_matches Dir[glob_pattern].map do |path| if File.directory?(path) "#{path}/" else path end end end