discourse/lib/oneboxer/funny_or_die_onebox.rb

11 lines
287 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require_dependency 'oneboxer/oembed_onebox'
module Oneboxer
class FunnyOrDieOnebox < OembedOnebox
matcher /^https?\:\/\/(www\.)?funnyordie\.com\/videos\/.*$/
def oembed_endpoint
"http://www.funnyordie.com/oembed.json?url=#{BaseOnebox.uriencode(@url)}"
end
end
end