Created
February 8, 2012 19:16
-
-
Save nwjsmith/1772404 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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