The Clickatell Ruby API is a Ruby interface to the Clickatell SMS
gateway service (www.clickatell.com). It allows you to send SMS
messages in your Ruby and Rails applications.
It also comes with a command line utility, ''sms'', for sending
messages
directly from the command line.
Using the library is simple, all you need is a Clickatell account and
a HTTP API Key.
api = Clickatell::API.authenticate(''your_api_id'',
''your_username'',
''your_password'')
api.send_message(''447771234567'', ''Hello from
clickatell'')
Using the sms command line utility:
$ sms 0797771234567 ''Hello world!''
New in this release:
* Restructured API classes into individual files
* Refactored command execution into a separate object
(CommandExecutor).
* Major refactoring of API module - converted it to a class with API
methods implemented as instance methods. Code is much cleaner and
Connection class becomes redundant. See updated documentation.
TO INSTALL:
$ sudo gem install clickatell
RUBYFORGE:
http://rubyforge.org/projects/clickatell/
WEBSITE AND DOCUMENTATION:
http://clickatell.rubyforge.org
http://clickatell.rubyforge.org/rdoc/
All feed back is welcome!
Cheers
Luke Redpath
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---