Created
May 5, 2014 00:33
-
-
Save dewski/369293dd40c39a14cc48 to your computer and use it in GitHub Desktop.
This file contains 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
fruits = [ | |
{ | |
:color => 'red', | |
:type => 'apple' | |
}, | |
{ | |
:color => 'orange', | |
:type => 'orange' | |
} | |
] | |
JSONBuilder::Compiler.generate do | |
fruitBasket 'For Grandma' | |
fruits(fruits) do |fruit| | |
fruitType fruit[:type] | |
color fruit[:color] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment