├── CHANGES ├── Gemfile ├── LICENSE ├── LICENSE-Freeswitcher ├── README.md ├── Rakefile ├── TODO ├── examples ├── inbound_listener.rb ├── multiple_listeners.rb └── outbound_listener.rb ├── lib ├── librevox.rb └── librevox │ ├── applications.rb │ ├── command_socket.rb │ ├── commands.rb │ ├── listener │ ├── base.rb │ ├── inbound.rb │ └── outbound.rb │ └── response.rb ├── librevox.gemspec └── spec ├── helper.rb └── librevox ├── _spec_command_socket.rb ├── listener.rb ├── listener ├── spec_inbound.rb └── spec_outbound.rb ├── spec_applications.rb ├── spec_commands.rb └── spec_response.rb /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/CHANGES -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-Freeswitcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/LICENSE-Freeswitcher -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/TODO -------------------------------------------------------------------------------- /examples/inbound_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/examples/inbound_listener.rb -------------------------------------------------------------------------------- /examples/multiple_listeners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/examples/multiple_listeners.rb -------------------------------------------------------------------------------- /examples/outbound_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/examples/outbound_listener.rb -------------------------------------------------------------------------------- /lib/librevox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/lib/librevox.rb -------------------------------------------------------------------------------- /lib/librevox/applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/lib/librevox/applications.rb -------------------------------------------------------------------------------- /lib/librevox/command_socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/lib/librevox/command_socket.rb -------------------------------------------------------------------------------- /lib/librevox/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/lib/librevox/commands.rb -------------------------------------------------------------------------------- /lib/librevox/listener/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/lib/librevox/listener/base.rb -------------------------------------------------------------------------------- /lib/librevox/listener/inbound.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/lib/librevox/listener/inbound.rb -------------------------------------------------------------------------------- /lib/librevox/listener/outbound.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/lib/librevox/listener/outbound.rb -------------------------------------------------------------------------------- /lib/librevox/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/lib/librevox/response.rb -------------------------------------------------------------------------------- /librevox.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/librevox.gemspec -------------------------------------------------------------------------------- /spec/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/spec/helper.rb -------------------------------------------------------------------------------- /spec/librevox/_spec_command_socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/spec/librevox/_spec_command_socket.rb -------------------------------------------------------------------------------- /spec/librevox/listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/spec/librevox/listener.rb -------------------------------------------------------------------------------- /spec/librevox/listener/spec_inbound.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/spec/librevox/listener/spec_inbound.rb -------------------------------------------------------------------------------- /spec/librevox/listener/spec_outbound.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/spec/librevox/listener/spec_outbound.rb -------------------------------------------------------------------------------- /spec/librevox/spec_applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/spec/librevox/spec_applications.rb -------------------------------------------------------------------------------- /spec/librevox/spec_commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/spec/librevox/spec_commands.rb -------------------------------------------------------------------------------- /spec/librevox/spec_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vangberg/librevox/HEAD/spec/librevox/spec_response.rb --------------------------------------------------------------------------------