dotar/vim/snippets/ruby-rails/defshow.snippet

9 lines
175 B
Plaintext
Raw Normal View History

2011-11-17 15:45:33 -06:00
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}