Created
October 17, 2012 19:27
-
-
Save reinh/3907580 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
class PostsController < ApplicationController | |
def show | |
post = Post.find(params[:id]) | |
respond_with ViewModel::Post.new(post) | |
end | |
end |
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
<article> | |
<h1><%= title %></h1> | |
<%= simple_format body %> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment