method

load

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: SafeYAML
load(input) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.