Sha256: 303eea001b1b63804b41c5c2d87f1cc7f75453cecd423b3482e44bc79dd758e5
Contents?: true
Size: 479 Bytes
Versions: 7
Compression:
Stored size: 479 Bytes
Contents
# frozen_string_literal: true module Onebox module Engine class CoubOnebox include Engine include StandardEmbed matches_regexp(/^https?:\/\/coub\.com\/view\//) always_https def placeholder_html oembed = get_oembed "<img src='#{oembed.thumbnail_url}' height='#{oembed.thumbnail_height}' width='#{oembed.thumbnail_width}' #{oembed.title_attr}>" end def to_html get_oembed.html end end end end
Version data entries
7 entries across 7 versions & 1 rubygems