ruby-agi 0.0.3 → 1.0.0
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 +1 -1
- data/Release-Notes +2 -0
- data/extconf.rb +2 -0
- data/lib/ruby-agi/agi.rb +847 -0
- data/lib/{asterisk_variable.rb → ruby-agi/asterisk_variable.rb} +49 -34
- data/lib/ruby-agi/command.rb +897 -0
- data/lib/ruby-agi.rb +5 -0
- metadata +12 -32
- data/examples/call_log.rb +0 -0
- data/lib/agi.rb +0 -310
- data/lib/command.rb +0 -486
- data.tar.gz.sig +0 -1
- metadata.gz.sig +0 -0
- /data/lib/{error.rb → ruby-agi/error.rb} +0 -0
- /data/lib/{return_status.rb → ruby-agi/return_status.rb} +0 -0
data/README
CHANGED
@@ -8,7 +8,7 @@ Hopefully, you already understood I am not good at documentation.
|
|
8
8
|
I truely appolize for that.
|
9
9
|
If anybody want to give a hand to write documentation for this project would be greatly appreciated.
|
10
10
|
|
11
|
-
Project homepage: http://
|
11
|
+
Project homepage: http://www.ruby-agi.org
|
12
12
|
|
13
13
|
Please feel free to email me with your feature request, bug report or any suggession.
|
14
14
|
|
data/Release-Notes
ADDED
data/extconf.rb
ADDED