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

9 lines
159 B
Plaintext
Raw Normal View History

2011-11-18 05:45:33 +08:00
def new
@${1:model_class_name} = ${2:ModelClassName}.new
respond_to do |wants|
wants.html # new.html.erb
wants.xml { render :xml => @$1 }
end
end${3}