This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Run the following if you haven't already:
gem sources -a http://gems.github.com
Install the gem(s):
sudo gem install gregmoreno-globe-mobile
Greg Moreno (author)
Wed Apr 15 02:24:33 -0700 2009
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
README.rdoc | ||
| |
Rakefile | Sat Jul 26 08:32:42 -0700 2008 | |
| |
globe-mobile.gemspec | Wed Apr 15 02:24:33 -0700 2009 | |
| |
lib/ | ||
| |
test/ |
Globe-Mobile API in Ruby
Developers
- Greg Moreno <hello at gregmoreno dot ca>
- {Neil Decapia} <nldecapia at gmail dot com>
- Joseph Michael Galero <michaelgalero at gmail dot com>
Description
globe-mobile provides a Ruby-based interface to Globe Telecoms Mobile API platform. To learn more of the Globe’s API, visit www.globelabs.com.ph
External gem dependencies
For using the API:
- SOAP4R (tested with soap4r-1.5.8)
- XMLSimple (tested with xml-simple-1.0.12)
For running tests
- RSpec
Usage examples
require ‘rubygems’ gem ‘globe-mobile’, ’>= 0.0.2’ require ‘mobile’
client = Mobile::Globe::SOAP::Client.configure do |config|
config.user_name = 'globeUser' config.user_pin = 'someRandomPin'
end
response = client.send_sms(:to_number => ‘09062224406’, :message => ‘hello from globe api’) puts response.sms_accepted? ? "SMS sent" : response












