Skip to contentSkip to navigationSkip to topbar
On this page

How to Set up a Ruby Local Development Environment


To complete the Twilio Ruby quickstarts, you'll need to have the following tools installed:

We'll cover the installation process for all of these dependencies.


Install Ruby

install-ruby page anchor

If you are on a Mac or a Linux machine, you probably already have Ruby installed. You can check by typing this at the command line:

1
ruby -v
2
ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin10.8.0]

If you get any output back other than ruby: command not found, you've got Ruby installed. If you don't, follow these instructions to install Ruby for Mac or Linux(link takes you to an external page).

If you're using Windows, download the RubyInstaller(link takes you to an external page) package, which contains a complete Ruby environment.

Install RubyGems

install-rubygems page anchor

Third-party dependencies in Ruby are managed with RubyGems(link takes you to an external page), a command line tool that makes it very easy to add new libraries and include them in your Ruby projects. You can check if you have RubyGems installed already by running this at the command line:

1
gem --version
2
1.8.24

If you get gem: command not found, you can download RubyGems from their downloads page(link takes you to an external page).

RubyGems for Windows will be installed by RubyInstaller.


Install Sinatra and twilio-ruby

install-sinatra-and-twilio-ruby page anchor

Once you have RubyGems installed, installing Sinatra and twilio-ruby is a snap. Just type this at the command line:

gem install sinatra twilio-ruby

RubyGems will take care of the rest of the work.


Test the installation out

test-the-installation-out page anchor

Let's try our installed tools out with a short test file. Create a new file called test.rb and add the following code:

1
require 'rubygems'
2
require 'twilio-ruby'
3
require 'sinatra'
4
5
get '/' do
6
'Hello World! Currently running version ' + Twilio::VERSION + \
7
' of the twilio-ruby library.'
8
end

Now start up a local web server by running your test.rb file at the command line:

ruby test.rb

You should see output like this:

1
Sinatra/1.3.2 has taken the stage on 4567 for development with backup from Thin
2
>> Thin web server (v1.4.1 codename Chrome)
3
>> Maximum connections set to 1024
4
>> Listening on 0.0.0.0:4567, CTRL+C to stop

Now load http://localhost:4567(link takes you to an external page) in a browser. You should see a "Hello World" message, with the version of the twilio-ruby library posted too.

If you received an error along the way, contact our support team with a description of what you were trying to do, what you expected to see, and what happened. They'll be glad to help you figure out what's going on.


Now that you've got your local environment set up, you're ready to dive into the Quickstarts. Have fun!

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.