twiliolib 2.0.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +13 -8
- data/lib/twiliolib.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -1,15 +1,23 @@
|
|
1
1
|
## Ruby Twilio Helper Library
|
2
2
|
|
3
|
-
###
|
3
|
+
### DESCRIPTION
|
4
4
|
The Twilio REST SDK simplifies the process of makes calls to the Twilio REST.
|
5
5
|
The Twilio REST API lets to you initiate outgoing calls, list previous call,
|
6
6
|
and much more. See http://www.twilio.com/docs for more information.
|
7
7
|
|
8
|
-
###
|
8
|
+
### GEM
|
9
|
+
To install the Twilio GEM, follow these steps. Note: RubyGems 1.2.0 or greater required
|
9
10
|
|
10
|
-
|
11
|
+
$ gem sources -a http://gems.github.com (you only have to do this once)
|
12
|
+
$ sudo gem install twilio-twilio-ruby
|
11
13
|
|
12
|
-
|
14
|
+
More info at <http://gems.github.com/>
|
15
|
+
|
16
|
+
### NON-GEM
|
17
|
+
To use the twilio.rb library with Rails just copy the twilio.rb file
|
18
|
+
into the lib directory of your Rails application. Then just require
|
19
|
+
"twiliorest.rb" in the controller or code file you wish to use the Twilio REST
|
20
|
+
API from.
|
13
21
|
|
14
22
|
### USAGE
|
15
23
|
As shown in example.rb, you will need to specify the ACCOUNT_ID and
|
@@ -28,7 +36,4 @@ The Twilio Ruby Helper Library is distributed under the MIT License
|
|
28
36
|
|
29
37
|
### THANKS
|
30
38
|
* Jay Philips (@adhearsion) for some great advice
|
31
|
-
* Michael Ansel (@michaelansel) for a great starting point <http://github.com/michaelansel/twilio-rails/tree/master>
|
32
|
-
|
33
|
-
### OTHER GEMS
|
34
|
-
Also check out webficient's [twilio gem](http://github.com/webficient/twilio)
|
39
|
+
* Michael Ansel (@michaelansel) for a great starting point <http://github.com/michaelansel/twilio-rails/tree/master>
|
data/lib/twiliolib.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twiliolib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Twilio
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-01-
|
12
|
+
date: 2010-01-07 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -60,6 +60,6 @@ rubyforge_project:
|
|
60
60
|
rubygems_version: 1.3.5
|
61
61
|
signing_key:
|
62
62
|
specification_version: 3
|
63
|
-
summary:
|
63
|
+
summary: A Ruby gem for communicating with the Twilio API and generating TwiML
|
64
64
|
test_files: []
|
65
65
|
|