Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CHANGE] Remove FreeSWITCH translator #201

Merged
merged 2 commits into from
Jun 16, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ matrix:
- rvm: rbx-2.1.1
notifications:
irc: "irc.freenode.org#adhearsion"
sudo: false
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# [develop](https://github.com/adhearsion/punchblock)
* Change: Remove support for FreeSWITCH translator on Inbound EventSocket

# [v2.7.0](https://github.com/adhearsion/punchblock/compare/v2.6.0...v2.7.0) - [2015-06-09](https://rubygems.org/gems/punchblock/versions/2.7.0)
* Feature: Support for Asterisk 13 (AMI v2)
Expand Down
1 change: 0 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ The best available usage documentation available for Punchblock is by example, i

* Rayo
* Asterisk (AMI & AsyncAGI)
* FreeSWITCH (Inbound Event Socket)

## Links:
* [Source](https://github.com/adhearsion/punchblock)
Expand Down
2 changes: 1 addition & 1 deletion lib/punchblock.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def reset_logger
#
# Get a new Punchblock client with a connection attached
#
# @param [Symbol] type the connection type (eg :XMPP, :asterisk, :freeswitch)
# @param [Symbol] type the connection type (eg :XMPP, :asterisk)
# @param [Hash] options the options to pass to the connection (credentials, etc
#
# @return [Punchblock::Client] a punchblock client object
Expand Down
1 change: 0 additions & 1 deletion lib/punchblock/connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ module Connection

autoload :Asterisk
autoload :Connected
autoload :Freeswitch
autoload :GenericConnection
autoload :XMPP
end
Expand Down
53 changes: 0 additions & 53 deletions lib/punchblock/connection/freeswitch.rb

This file was deleted.

1 change: 0 additions & 1 deletion lib/punchblock/translator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ module Translator
OptionError = Class.new Punchblock::Error

autoload :Asterisk
autoload :Freeswitch

autoload :DTMFRecognizer
autoload :InputComponent
Expand Down
164 changes: 0 additions & 164 deletions lib/punchblock/translator/freeswitch.rb

This file was deleted.

Loading