Skip to content

Instantly share code, notes, and snippets.

@nwjsmith
Created February 8, 2012 19:16
Show Gist options
  • Save nwjsmith/1772404 to your computer and use it in GitHub Desktop.
Save nwjsmith/1772404 to your computer and use it in GitHub Desktop.
defaults: &defaults # The '&' creates a reference called 'defaults' for later
grizzlies: 'hardcore'
pandas: 'stupid'
mammals:
pandas: 'furry' # Overrides key/value in 'defaults'
<<: *defaults # Concatenates defaults
bears:
grizzlies: 'smelly' # Overrides key/value in 'defaults'
<<: *defaults # Concatenates defaults
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment