Skip to content

Instantly share code, notes, and snippets.

@haileys
Created August 28, 2013 13:31
Show Gist options
  • Save haileys/6366104 to your computer and use it in GitHub Desktop.
Save haileys/6366104 to your computer and use it in GitHub Desktop.
def load_yaml_properly(yaml)
YAML.load yaml
rescue ArgumentError => e
raise e unless e.message =~ /undefined class\/module (.*)/
$1.constantize
retry
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment