# File lib/puppet/util/methodhelper.rb, line 25 25: def symbolize_options(options) 26: options.inject({}) do |hash, opts| 27: if opts[0].respond_to? :intern 28: hash[opts[0].intern] = opts[1] 29: else 30: hash[opts[0]] = opts[1] 31: end 32: hash 33: end 34: end