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 !
sms-fu / init.rb
100644 7 lines (5 sloc) 0.155 kb
1
2
3
4
5
6
7
require 'actionmailer'
require 'sms_fu'
require 'sms_fu_helper'
 
ActionController::Base.send(:include, SMSFu)
ActionView::Base.send(:include, SMSFuHelper)