1 2 3 4 5 6 7 8 9
class CertsController < ApplicationController # GET /cert def show @cert = Cert.pick_from_pool render :text => @cert.zipped, :content_type => 'text/plain' end end