# File lib/rcodetools/options.rb, line 86 def auto_include_paths(include_paths, pwd) if pwd =~ %r!^(.+)/(lib|bin)! include_paths.unshift("#$1/lib").unshift("#$1/bin") elsif File.file? "#{pwd}/Rakefile" or File.file? "#{pwd}/rakefile" include_paths.unshift("#{pwd}/lib").unshift("#{pwd}/bin") end end