In Files

  • psych/lib/psych/class_loader.rb

Psych::ClassLoader::Restricted

Public Class Methods

new(classes, symbols) click to toggle source
 
               # File psych/lib/psych/class_loader.rb, line 76
def initialize classes, symbols
  @classes = classes
  @symbols = symbols
  super()
end
            

Public Instance Methods

symbolize(sym) click to toggle source
 
               # File psych/lib/psych/class_loader.rb, line 82
def symbolize sym
  return super if @symbols.empty?

  if @symbols.include? sym
    super
  else
    raise DisallowedClass.new('load', 'Symbol')
  end
end
            
There is an updated format of the API docs for this version here.