# File lib/puppet/parser/interpreter.rb, line 37
37:     def initialize
38:         # The class won't always be defined during testing.
39:         if Puppet[:storeconfigs]
40:             if Puppet.features.rails?
41:                 Puppet::Rails.init
42:             else
43:                 raise Puppet::Error, "Rails is missing; cannot store configurations"
44:             end
45:         end
46: 
47:         @parsers = {}
48:     end