class PrettyMailer::AssetParser

Public Class Methods

new(options) click to toggle source
Calls superclass method
# File lib/pretty_mailer/asset_parser.rb, line 7
def initialize options
  super options
  options[:stylesheets].each do |stylesheet|
    load_string! Rails.application.assets.find_asset(stylesheet).to_s
  end
  self
end