dotar/vim/snippets/ruby-rails/defshow.snippet
2011-11-17 16:00:49 -06:00

9 lines
175 B
Plaintext
Executable File

def show
@${1:model_class_name} = ${2:ModelClassName}.find(params[:id])
respond_to do |wants|
wants.html # show.html.erb
wants.xml { render :xml => @$1 }
end
end${3}