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