def new @<%= singular_name %> = <%= class_name %>.new respond_to do |format| format.html # new.html.erb <%- unless options[:no_xml] -%> format.xml { render :xml => @<%= singular_name %>.to_xml(:except => [:id, :created_at, :updated_at]) } <%- end -%> <%- unless options[:no_json] -%> format.json { render :json => @<%= singular_name %>.to_json(:except => [:id, :created_at, :updated_at]) } <%- end -%> end end