brendanlim / sms-fu

Allows you to send an SMS in the form of an e-mail to a cell phone from your Rails application

This URL has Read+Write access

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)