public
Description: Allows you to send an SMS in the form of an e-mail to a cell phone from your Rails application
Homepage: http://intridea.com/2008/3/30/sms-fu-quickly-easily-send-text-messages
Clone URL: git://github.com/brendanlim/sms-fu.git
Click here to lend your support to: sms-fu and make a donation at www.pledgie.com !
brendanlim (author)
Thu Jul 02 08:47:27 -0700 2009
commit  899050db2a8877fe508738811c121247571aaea2
tree    4929636695dd12f2c3386f0882ed09adea35fa47
parent  ad7cabcb7eb5ca8001ef187339d382664b1c3e81
sms-fu / init.rb
100644 5 lines (5 sloc) 0.218 kb
1
2
3
4
5
require "action_mailer"
require File.dirname(__FILE__) + '/lib/sms_fu'
require File.dirname(__FILE__) + '/lib/sms_fu_helper.rb'
ActionController::Base.send(:include, SMSFu)
ActionView::Base.send(:include, SMSFuHelper)