Mercurial > zeropaste
view app/helpers/pastes_helper.rb @ 192:1da19a81f5d7
Update rails to 3.2.13 and various other gems.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Wed, 20 Mar 2013 04:55:49 +0900 |
parents | 500c09718fd7 |
children | 7c7b7906ebd9 |
line wrap: on
line source
module PastesHelper def print_txt_create_result unless @paste.errors.any? url = paste_path @paste, :only_path => false if @fresh "#{url} (key: #{@paste.key})" else url end else 'Failed' end end end