class Humpyard::UriParser::AssetsUriParser
Public Class Methods
substitute(content, options = {})
click to toggle source
# File lib/humpyard/uri_parser/assets_uri_parser.rb 4 def self.substitute content, options = {} 5 content.gsub(/humpyard:\/\/asset\/([0-9]*)/) do |uri| 6 begin 7 "#{options[:prefix]}#{Asset.find($1).url}#{options[:postfix]}" 8 rescue 9 '' 10 end 11 end 12 end