# File lib/puppet/rails/host.rb, line 165
165:     def find_resources
166:         condition = { :exported => true } if Puppet.settings[:thin_storeconfigs]
167: 
168:         resources.find(:all, :include => :source_file, :conditions => condition || {}).inject({}) do | hash, resource |
169:             hash[resource.id] = resource
170:             hash
171:         end
172:     end