mikedamage-premailer-plus 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION.yml +1 -1
- data/bin/premailer_plus +1 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
data/bin/premailer_plus
CHANGED
@@ -59,7 +59,7 @@ END
|
|
59
59
|
opts.banner = BANNER.gsub!(/FILE/, File.basename(__FILE__))
|
60
60
|
opts.on("-p", "--plaintext", "Output a plain-text version of the email in addition to HTML") { @config.plaintext = true }
|
61
61
|
opts.on("-s", "--shorten-urls", "Shorten URLs with Bit.ly in the plain-text version") { @config.shorten_urls = true }
|
62
|
-
opts.on("-b", "--baseurl URL", "Prepend this URL to links
|
62
|
+
opts.on("-b", "--baseurl URL", "Prepend this URL to links") {|url| @config.base_url = url }
|
63
63
|
opts.on("-q", "--querystring STRING", "Append this query string to link URLs") {|string| @config.querystring = string }
|
64
64
|
opts.on("-v", "--verbose", "Display status information during the pre-mailing process") { @config.verbose = true }
|
65
65
|
opts.on("-w", "--warnings", "Display CSS support warnings") { @config.warnings = true }
|