nileshtrivedi-gupshup 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/README.rdoc +10 -4
  2. metadata +1 -1
@@ -4,31 +4,37 @@
4
4
 
5
5
  == DESCRIPTION:
6
6
 
7
- gupshup is a ruby wrapper for the HTTP APIs provided by SMS GupShup which
7
+ gupshup is a Ruby wrapper for the HTTP APIs provided by SMS GupShup which
8
8
  is a Group SMS Platform for the enterprises with advanced features such as
9
9
  masks, keywords, text/flash/vcard/bulk messages, advertising and keyword
10
10
  campaigns and so on.
11
11
 
12
+ Documentation of HTTP APIs is available here:
13
+ http://enterprise.smsgupshup.com/doc/GatewayAPIDoc.doc
14
+
12
15
  == FEATURES:
13
16
 
14
17
  * V 0.1.0 send_vcard and send_unicode_message implemented. Error checking.
15
18
  * V 0.0.5 send_text_message and send_flash_message are implemented
16
19
  * V 0.0.1 send_message is implemented.
17
20
 
18
- == SYNOPSIS:
21
+ == USAGE:
19
22
 
20
23
  gup = Gupshup::Enterprise.new('your_gupshup_login','password')
21
24
  gup.send_text_message('sms message text',target_phone_number)
22
25
  gup.send_flash_message('sms message text',target_phone_number)
26
+ gup.send_vcard(vcard,target_phone_number)
27
+ gup.send_unicode_message(unicode_message_in_utf8_encoding,target_phone_number)
23
28
 
29
+ target_phone_number should be a 12 digit India mobile number starting with "919"
24
30
  == REQUIREMENTS:
25
31
 
26
32
  * uri, cgi, http
27
33
 
28
34
  == INSTALL:
29
35
 
30
- * sudo gem sources -a http://gems.github.com
31
- * sudo gem install gupshup
36
+ sudo gem sources -a http://gems.github.com
37
+ sudo gem install nileshtrivedi-gupshup
32
38
 
33
39
  == LICENSE:
34
40
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nileshtrivedi-gupshup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nilesh Trivedi