Sha256: 5224dbdb576f2a5e258df10bb6696c8f15ffbf564ce20b6ac92e46dc119ee8e7
Contents?: true
Size: 150 Bytes
Versions: 19
Compression:
Stored size: 150 Bytes
Contents
class PostsController < ApplicationController def index @posts = Post.all end def show @post = Post.find(params[:id]) end end
Version data entries
19 entries across 19 versions & 1 rubygems