method

load

v2_6_3 - Show latest stable - Class: Gem::SafeYAML
load(input)
public

No documentation available.

# File lib/rubygems/safe_yaml.rb, line 38
      def self.load(input)
        if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('3.1.0.pre1')
          ::YAML.safe_load(input, permitted_classes: [::Symbol])
        else
          ::YAML.safe_load(input, [::Symbol])
        end
      end