ruby-bulksms 0.1 → 0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README +12 -3
  2. data/ruby-bulksms.gemspec +1 -1
  3. metadata +10 -4
data/README CHANGED
@@ -1,4 +1,4 @@
1
- = Introduction
1
+ == Introduction
2
2
 
3
3
  Net::SMS::BulkSMS is a Ruby library that allows you to easily integrate SMS services into your Ruby or RubyOnRails applications.
4
4
 
@@ -6,7 +6,7 @@ It has support for all BulkSMS international sites, including the UK, USA, South
6
6
 
7
7
  To use the library, you will need an account from www.bulksms.com and some credits.
8
8
 
9
- = Examples
9
+ == Examples
10
10
 
11
11
  Creating a new service and sending a message is simple.
12
12
 
@@ -39,10 +39,19 @@ Alternatively, you can create an Account object directly.
39
39
 
40
40
  For a further example, see the simple command line client provided.
41
41
 
42
- = Limitations
42
+ == Limitations
43
43
 
44
44
  This library currently only implements a small portion of the API, allowing you to send messages and check your account balance. Further parts of the BulkSMS API may be implemented in the future such as the ability to receive messages and status reports and manage the address book provided by BulkSMS.
45
45
 
46
46
  == A note about testing
47
47
 
48
48
  I tried to cover the library with unit tests where possible however I'm not very experienced with unit testing network services and all tests require a valid account to run. If anybody could share some advice here it would be much appreciated.
49
+
50
+ ==Authors:
51
+
52
+ The Original work is made by Luke Redpath (email:contact@lukeredpath.co.uk)
53
+ Modifications have been added by Basayel Said (email:eng.basayel.said@gmail.com)
54
+ Modifications include:
55
+ 1.fixing a bug related to getting the host of bulksms service.
56
+ 2.adding gem spec file to the library.
57
+ 3.packaging the library as a gem.
data/ruby-bulksms.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "ruby-bulksms"
3
- s.version = "0.1"
3
+ s.version = "0.3"
4
4
  s.date = "2010-03-29"
5
5
  s.summary = "Sending SMS using bulksms services"
6
6
  s.email = "eng.basayel.said@gmail.com"
metadata CHANGED
@@ -1,7 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-bulksms
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.1"
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 3
8
+ version: "0.3"
5
9
  platform: ruby
6
10
  authors:
7
11
  - Basayel Said
@@ -42,18 +46,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
42
46
  requirements:
43
47
  - - ">="
44
48
  - !ruby/object:Gem::Version
49
+ segments:
50
+ - 0
45
51
  version: "0"
46
- version:
47
52
  required_rubygems_version: !ruby/object:Gem::Requirement
48
53
  requirements:
49
54
  - - ">="
50
55
  - !ruby/object:Gem::Version
56
+ segments:
57
+ - 0
51
58
  version: "0"
52
- version:
53
59
  requirements: []
54
60
 
55
61
  rubyforge_project:
56
- rubygems_version: 1.3.5
62
+ rubygems_version: 1.3.6
57
63
  signing_key:
58
64
  specification_version: 3
59
65
  summary: Sending SMS using bulksms services