ragi 1.0.0 → 1.0.1

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 CHANGED
@@ -48,7 +48,7 @@ call handler. To run, type the following from the command prompt:
48
48
 
49
49
  ruby ragi\start_ragi.rb
50
50
 
51
- If you wanted to send calls to a different call handler, can pass it as a parameter
51
+ If you wanted to send calls to a different call handler, you can pass it as a parameter
52
52
  to the CallServer.new. For example:
53
53
 
54
54
  RAGI::CallServer.new( :DefaultHandler => MyNewHandler::CallHandler )
@@ -37,7 +37,7 @@ require 'ragi/config'
37
37
  require 'thread'
38
38
 
39
39
  module RAGI
40
- VERSION = "0.0.1"
40
+ VERSION = "1.0.0"
41
41
 
42
42
  @globalConfig = nil
43
43
 
File without changes
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  # RAGI -- Ruby Asterisk Gateway Interface
2
- # See ragi.sourceforge.net for more information.
2
+ # See http://rubyforge.org/projects/ragi/ for more information.
3
3
  # Sponsored by SnapVine, Inc (www.snapvine.com)
4
4
  #
5
5
  # Class: SimonHandler
@@ -0,0 +1,6 @@
1
+ ҙ���P �x�k����Us!M,h)3X�5$qޫ���-�H�B�Z�7`WE��#�bi&Ē�{cz;,��.%��ܰ-�7��ټuF��
2
+ Z��� �����e���7P��-�%W��:���Am�$�E�$��]�X���䈸�rMW����Jwf0
3
+ ~3���X-�����Ko)V 31a��||�ѥikͻ�� �u����R2���"�n�)�)��
4
+ �+)%��FӤz�쪇��L����� Ӯ�Zcg��� (�
5
+ ��,S*-���r�7$pG#�#"�I�%It�Ǖ�-C�%ԃ�z��e�C�-b8��ؙȿ4�����-Kv���W^ kҟ�E�B%N�"6����r�0�mCn.�d@�Q�����VF���V��:��)�������k&��ƅ�۝�Gow�R���G #��g�m��"Ӫ�-���c!d^�'��o�B��Hװ0[��ǜ�}��雩o���u�#�&�i��/�$�
6
+ �9\�&jGl�%�꣡7���F��f�����D�]�T��&�m����Ô��cœnM�Êr���$�C�*A�n�Dϭȃ#ԣ���¤6�q���cyZ���A��H���@�2g��#�����q�8i�$Fے3�̣�]����CX�u��k̕��$ے})�r�v�2肔�v �h��s�Y��j�Ve��Y$��W�!��r+,��{|�%��K�V�i�R���t��c�����!p���FL�j���5��
metadata CHANGED
@@ -3,11 +3,12 @@ rubygems_version: 0.8.10
3
3
  specification_version: 1
4
4
  name: ragi
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.0
7
- date: 2005-12-17
6
+ version: 1.0.1
7
+ date: 2005-12-18
8
8
  summary: RAGI allows you to create useful telephony applications using Asterisk and Ruby [on Rails].
9
9
  require_paths:
10
- - lib
10
+ - "."
11
+ - ragi
11
12
  email: joe_AT_snapvine.com
12
13
  homepage: http://rubyforge.org/projects/ragi
13
14
  rubyforge_project:
@@ -28,20 +29,20 @@ authors:
28
29
  - Joe Heitzeberg
29
30
  files:
30
31
  - example-call-audio.mp3
31
- - ragi.gempsec
32
32
  - CHANGELOG
33
33
  - README
34
- - call_connection.rb
35
- - call_handler.rb
36
- - call_initiate.rb
37
- - call_server.rb
38
- - config.rb
39
- - start_ragi.rb
40
- - test.rb
34
+ - ragi/call_connection.rb
35
+ - ragi/call_handler.rb
36
+ - ragi/call_initiate.rb
37
+ - ragi/call_server.rb
38
+ - ragi/config.rb
39
+ - ragi/start_ragi.rb
40
+ - ragi/test.rb
41
41
  - RAGI Overview_files/filelist.xml
42
42
  - RAGI Overview_files/image001.gif
43
43
  - sample-apps/simon/simon_handler.rb
44
44
  - sample-apps/simon/sounds/README
45
+ - sample-apps/simon/sounds/simon-0.gsm
45
46
  - sample-apps/simon/sounds/simon-1.gsm
46
47
  - sample-apps/simon/sounds/simon-2.gsm
47
48
  - sample-apps/simon/sounds/simon-3.gsm
@@ -1,23 +0,0 @@
1
- require "rubygems"
2
- require "rake"
3
-
4
- spec = Gem::Specification.new do |gem|
5
- gem.name = "ragi"
6
- gem.version = "1.0.0"
7
- gem.author = "Joe Heitzeberg"
8
- gem.email = "joe_AT_snapvine.com"
9
- gem.homepage = "http://rubyforge.org/projects/ragi"
10
- gem.platform = Gem::Platform::RUBY
11
- gem.summary = "RAGI allows you to create useful telephony applications using Asterisk and Ruby [on Rails]."
12
- gem.description = "RAGI allows you to create useful telephony applications using Asterisk and Ruby [on Rails]. Please see the included README file for more information"
13
- gem.has_rdoc = false
14
-
15
- gem.files = FileList['example-call-audio.mp3', 'ragi.gempsec', 'CHANGELOG', 'README', '*.rb', 'RAGI Overview_files/*', 'sample-apps/simon/*.rb', 'sample-apps/simon/sounds/README', 'sample-apps/simon/sounds/*.gsm'].to_a
16
- gem.files.reject! { |fn| fn.include? "SVN" }
17
- end
18
-
19
- if $0 == __FILE__
20
- Gem.manage_gems
21
- Gem::Builder.new(spec).build
22
- end
23
-