This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def default_image_size | |
320 | |
end | |
def image_style | |
"margin: 0;padding: 0;border: 0; max-width: 560px; height: auto;line-height: 100%;outline: none;text-decoration: none;" | |
end | |
def fallback_image_tag | |
content_tag(:img, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"> | |
<meta content="width=device-width" name="viewport"> | |
<style data-immutable="true"> | |
@media only screen and (max-width: 600px) { | |
table[class="body"] img { | |
width: auto !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "delegate" | |
class BankAccount | |
def number | |
123456 | |
end | |
end | |
class SimpleDelegatorBankAccount < SimpleDelegator | |
end |