Skip to content

Instantly share code, notes, and snippets.

@reinh
Created October 17, 2012 19:27
Show Gist options
  • Save reinh/3907580 to your computer and use it in GitHub Desktop.
Save reinh/3907580 to your computer and use it in GitHub Desktop.
class PostsController < ApplicationController
def show
post = Post.find(params[:id])
respond_with ViewModel::Post.new(post)
end
end
<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