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

9 lines
172 B
Plaintext
Executable File

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}