Skip to content

Instantly share code, notes, and snippets.

@razielgn
Created February 29, 2012 12:16
Show Gist options
  • Select an option

  • Save razielgn/1940433 to your computer and use it in GitHub Desktop.

Select an option

Save razielgn/1940433 to your computer and use it in GitHub Desktop.
class PostsController < ApplicationController
def show
@post = Post.find(params[:id])
# render di posts/show sottinteso
end
...
end
# template posts/show
<html>
<body>
<div id="post">
<h2><%= @post.title %></h2>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment