lib/onebox/engine/vimeo_onebox.rb in onebox-1.8.80 vs lib/onebox/engine/vimeo_onebox.rb in onebox-1.8.81

- old
+ new

@@ -1,20 +1,20 @@ -module Onebox - module Engine - class VimeoOnebox - include Engine - include StandardEmbed - - matches_regexp(/^https?:\/\/(www\.)?vimeo\.com\/\d+(\/[^\/]+)?$/) - always_https - - def placeholder_html - oembed = get_oembed - "<img src='#{oembed.thumbnail_url}' width='#{oembed.thumbnail_width}' height='#{oembed.thumbnail_height}' #{oembed.title_attr}>" - end - - def to_html - get_oembed.html - end - end - end -end +module Onebox + module Engine + class VimeoOnebox + include Engine + include StandardEmbed + + matches_regexp(/^https?:\/\/(www\.)?vimeo\.com\/\d+(\/[^\/]+)?$/) + always_https + + def placeholder_html + oembed = get_oembed + "<img src='#{oembed.thumbnail_url}' width='#{oembed.thumbnail_width}' height='#{oembed.thumbnail_height}' #{oembed.title_attr}>" + end + + def to_html + get_oembed.html + end + end + end +end