9 lines
172 B
Plaintext
Executable File
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}
|