Sha256: a451df90d0b368c97016035fbe4260a2a919773395e71dfe27762c855f238133
Contents?: true
Size: 789 Bytes
Versions: 1
Compression:
Stored size: 789 Bytes
Contents
module Griddler module Sendgrid class Adapter def initialize(params) @params = params end def self.normalize_params(params) adapter = new(params) adapter.normalize_params end def normalize_params params.merge( to: recipients(:to), cc: recipients(:cc), attachments: attachment_files, ) end private attr_reader :params def recipients(key) ( params[key] || '' ).split(',') end def attachment_files params.delete('attachment-info') attachment_count = params[:attachments].to_i attachment_count.times.map do |index| params.delete("attachment#{index + 1}".to_sym) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
griddler-sendgrid-0.0.1 | lib/griddler/sendgrid/adapter.rb |