Ruby
Run the Ruby App
In your terminal navigate to the project directory and execute the following command:
bundle exec ruby server.rb
This will start the application on http://localhost:4567. Making a web request to that URL will initiate a new call. You can do so by either opening up your preferred web browser and visiting that link or sending a cURL request by running curl http://localhost:4567 from your terminal.
Play Audio into a Call with Ruby
A tutorial showing you how to build an app that will play audio into a PSTN call
Steps
1
Introduction to this tutorial2
Prerequisites3
Create the Project Folder and Files4
Install Vonage Ruby5
Require Dependencies6
Initialize Vonage Client7
Add Environment Variables8
Define Constant Variables9
Create Routes10
Run the Ruby App11
What's Next?