test
Ruby
code posted
created at 12 Jun 03:01, updated at 12 Jun 03:02
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 |
# GET /venues/1 # GET /venues/1.xml def show @venue = Venue.find(params[:id]) respond_to do |format| format.html # show.html.erb format.xml { render :xml => @venue } end end |
218 Bytes in 3 ms with coderay