class Struct

Public Class Methods

yaml_tag_read_class(name) click to toggle source
# File lib/delayed/syck_ext.rb, line 28
def self.yaml_tag_read_class(name)
  # Constantize the object so that ActiveSupport can attempt
  # its auto loading magic. Will raise LoadError if not successful.
  name.constantize
  "Struct::#{ name }"
end