# File lib/facter/util/loader.rb, line 52
52:   def search_path
53:     result = []
54:     result += $LOAD_PATH.collect { |d| File.join(d, "facter") }
55:     if ENV.include?("FACTERLIB")
56:       result += ENV["FACTERLIB"].split(":")
57:     end
58: 
59:     # This allows others to register additional paths we should search.
60:     result += Facter.search_path
61: 
62:     result
63:   end