view app/helpers/pastes_helper.rb @ 334:41b0903c9b2b

Use official bootstrap gem.
author edogawaconan <me@myconan.net>
date Wed, 23 Apr 2014 09:24:05 +0900
parents 7c7b7906ebd9
children 2ddd61aca2c8
line wrap: on
line source

module PastesHelper
  def print_txt_create_result
    if @paste.errors.any?
      "Failed"
    else
      url =  paste_path @paste, :only_path => false
      if @fresh
        "#{url} (key: #{@paste.key})"
      else
        url
      end
    end
  end
end