lib/onebox/engine/replit_onebox.rb in onebox-1.8.81 vs lib/onebox/engine/replit_onebox.rb in onebox-1.8.82

- old
+ new

@@ -1,24 +1,24 @@ -module Onebox - module Engine - class ReplitOnebox - include Engine - include StandardEmbed - - matches_regexp(/^https?:\/\/repl\.it\/.+/) - always_https - - def placeholder_html - oembed = get_oembed - - <<-HTML - <img src="#{oembed.thumbnail_url}" style="max-width: #{oembed.width}px; max-height: #{oembed.height}px;" #{oembed.title_attr}> - HTML - end - - def to_html - get_oembed.html - end - - end - end -end +module Onebox + module Engine + class ReplitOnebox + include Engine + include StandardEmbed + + matches_regexp(/^https?:\/\/repl\.it\/.+/) + always_https + + def placeholder_html + oembed = get_oembed + + <<-HTML + <img src="#{oembed.thumbnail_url}" style="max-width: #{oembed.width}px; max-height: #{oembed.height}px;" #{oembed.title_attr}> + HTML + end + + def to_html + get_oembed.html + end + + end + end +end