module Onebox module Engine class ClikThroughOnebox include Engine include OpenGraph matches do # /^https?:\/\/(?:www.)?clikthrough.com\/theater\/video\/\d+$/ find "clikthrough.com" end private def data { url: @url, title: raw.title, description: raw.description } end end end end