broney (owner)

Revisions

gist: 281 Download_button fork
public
Public Clone URL: git://gist.github.com/281.git
Embed All Files: show embed
test.rb #
1
2
3
4
5
6
7
8
9
10
11
class TestController < ApplicationController
 
  def index
    @posts = Post.paginate(:all)
  end
 
  def show
    @post = Post.find(params[:id])
  end
 
end