Skip to content

Instantly share code, notes, and snippets.

View gsmendoza's full-sized avatar

George Mendoza gsmendoza

View GitHub Profile
@gsmendoza
gsmendoza / gist:174494
Created August 25, 2009 05:23
Poor man's micronaut
def todo_describe(object, &block)
describe object do
it "is pending"
end
end
def todo_it(string, &block)
it string
end
class GenericMailer < ActionMailer::Base
def email(object, template_name, options = {})
@from = options[:from] || '[email protected]'
@from = @from.respond_to?(:email) ? @from.email : @from
@recipients = options[:recipients] || options[:to]
@recipients = @recipients.collect{|item| item.respond_to?(:email) ? item.email : item}.sort if @recipients.is_a? Array
@subject = "[App Name] " + (options[:subject] || I18n.t(template_name.to_s))
ActionController::Routing::Routes.routes.collect{|r| r.requirements}.uniq