Sha256: 7ddea65a2c2089be56052d5b0234128d6abc97b30c946bc647ea232f7fca363c
Contents?: true
Size: 151 Bytes
Versions: 8
Compression:
Stored size: 151 Bytes
Contents
class PeopleController < ApplicationController def index @people = Person.all end def show @person = Person.find(params[:id]) end end
Version data entries
8 entries across 8 versions & 1 rubygems