47.27.1. Akce kontroleru

def show_thing
    @thing = Thing.find(params[:id])    # select 1
end

def edit
    @thing = Thing.find(params[:thing][:id])    # select 2
    @thing.attributes = params[:thing]
    if @thing.save      # update
        …
    else
        …
    end
end
Licence Creative Commons
Tento dokument Ruby, jehož autorem je Radek Hnilica, podléhá licenci Creative Commons Uveďte autora-Nevyužívejte dílo komerčně-Zachovejte licenci 3.0 Česká republika .