# File lib/puppet/util/feature.rb, line 49
49:     def method_missing(method, *args)
50:         return super unless method.to_s =~ /\?$/
51: 
52:         feature = method.to_s.sub(/\?$/, '')
53:         @loader.load(feature)
54: 
55:         if respond_to?(method)
56:             return self.send(method)
57:         else
58:             return false
59:         end
60:     end