mirror of
https://github.com/samsonjs/stormy-weather.git
synced 2026-03-25 09:15:57 +00:00
19 lines
247 B
Ruby
19 lines
247 B
Ruby
# Copyright 2012 Sami Samhuri <sami@samhuri.net>
|
|
|
|
require 'rubygems'
|
|
require 'bundler/setup'
|
|
require 'pony'
|
|
|
|
module Pony
|
|
|
|
@@sent_mail = []
|
|
|
|
def self.mail(options)
|
|
sent_mail << options
|
|
end
|
|
|
|
def self.sent_mail
|
|
@@sent_mail
|
|
end
|
|
|
|
end
|