This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/oneboxer/image_onebox.rb
2013-10-24 12:21:38 +02:00

14 lines
250 B
Ruby

require_dependency 'oneboxer/base_onebox'
module Oneboxer
class ImageOnebox < BaseOnebox
matcher /^(https?:)?\/\/.+\.(png|jpg|jpeg|gif|bmp|tif|tiff)$/i
def onebox
Oneboxer::BaseOnebox.image_html(@url, nil, @url)
end
end
end