Skip to content

Instantly share code, notes, and snippets.

@alassek
Created February 18, 2011 22:41
Show Gist options
  • Select an option

  • Save alassek/834547 to your computer and use it in GitHub Desktop.

Select an option

Save alassek/834547 to your computer and use it in GitHub Desktop.
support ERB in a YAML file
class << YAML
def load_erb(file)
load(
ERB.new(
IO.read(file)
).result
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment