Created
February 14, 2012 09:59
-
-
Save brutuscat/1825444 to your computer and use it in GitHub Desktop.
Rails HAML Json render
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
:plain | |
[ | |
- @movies.each do |movie| | |
:plain | |
{ | |
"name":"#{movie.name}", | |
"description":"#{j(movie.description)}" | |
}, | |
] |
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
... | |
@movies = Movie.all | |
respond_to do |format| | |
format.json { render } | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment