discourse/lib/oneboxer/vimeo_onebox.rb

14 lines
269 B
Ruby
Raw Normal View History

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