mattpolito (owner)

Forks

Revisions

gist: 50726 Download_button fork
public
Public Clone URL: git://gist.github.com/50726.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
def new
  @product_request = ProductRequest.new
  @ps = ProductSpecification.find(params[:spec])
  @product_request.height = @ps.height
  @product_request.width = @ps.width
 
  respond_to do |format|
    format.html # new.html.erb
    format.xml { render :xml => @product_request }
  end
end