-
-
Save batasrki/1410634 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
### | |
# This is a JSON building library. It allows you to build data structures | |
# to dump as JSON. Here is a sample of how to use it: | |
# | |
# def person_hash(person) | |
# { | |
# 'name' => person.name, | |
# 'age' => person.age, | |
# 'friends' => person.friends.map { |x| person_hash x } | |
# } | |
# end | |
# | |
# JSON.dump person_hash Person.find 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment