# File lib/puppet/rails/host.rb, line 102
102:   def find_resources
103:     condition = { :exported => true } if Puppet.settings[:thin_storeconfigs]
104: 
105:     resources.find(:all, :include => :source_file, :conditions => condition || {}).inject({}) do | hash, resource |
106:       hash[resource.id] = resource
107:       hash
108:     end
109:   end