Last active
August 29, 2015 14:17
-
-
Save ripienaar/8a0ceecaeebe3a5331c9 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
| thing: &default_thing | |
| - one | |
| - two | |
| other_thing: | |
| wants_common_thing: *default_thing |
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
| thing: &common_thing | |
| one: x | |
| two: y | |
| # uses defaults, overrides `two` | |
| other_thing: | |
| <<: *common_thing | |
| two: overridden | |
| # defaults override | |
| yet_another_thing: | |
| one: set here, but overridden by defaults | |
| <<: *common_thing |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
last one produces: