discourse/lib/oneboxer/qik_onebox.rb

14 lines
260 B
Ruby
Raw Normal View History

2013-02-06 03:16:51 +08:00
require_dependency 'oneboxer/oembed_onebox'
module Oneboxer
class QikOnebox < OembedOnebox
matcher /^https?\:\/\/qik\.com\/video\/.*$/
def oembed_endpoint
"http://qik.com/api/oembed.json?url=#{BaseOnebox.uriencode(@url)}"
end
end
end