Sha256: 9ba1382853db3bafd56dfab702c0c15acdaf73f537785d79a7c181fc14047586
Contents?: true
Size: 337 Bytes
Versions: 5
Compression:
Stored size: 337 Bytes
Contents
class WidgetsController < ApplicationController def create @widget = Widget.create params[:widget] head :ok end def update @widget = Widget.find params[:id] @widget.update_attributes params[:widget] head :ok end def destroy @widget = Widget.find params[:id] @widget.destroy head :ok end end
Version data entries
5 entries across 5 versions & 1 rubygems