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

9 lines
172 B
Plaintext
Raw Normal View History

2011-11-17 15:45:33 -06:00
def index
@${1:model_class_name}s = ${2:ModelClassName}.all
respond_to do |wants|
wants.html # index.html.erb
wants.xml { render :xml => @$1s }
end
end${3}