README.md in twilio-ruby-3.1.0 vs README.md in twilio-ruby-3.1.1
- old
+ new
@@ -1,28 +1,28 @@
-## Get Started
+## Install
-To install:
-
Via rubygems.org:
```
-$ sudo gem install twilio-ruby
+$ gem install twilio-ruby
```
-To build and install yourself from the latest source:
+To build and install the development branch yourself from the latest source:
```
-$ git clone git@github.com:andrewmbenton/twilio-ruby.git
-$ cd twilio-ruby; rake gem
-$ sudo gem install pkg/twilio-ruby-{version}
+$ git clone git@github.com:twilio/twilio-ruby.git
+$ cd twilio-ruby
+$ git checkout develop
+$ rake gem
+$ gem install pkg/twilio-ruby-{version}
```
## Some Code To Get You Started
### Setup Work
``` ruby
-require 'rubygems'
+require 'rubygems' # not necessary with ruby 1.9.2 but included for completeness
require 'twilio-ruby'
# put your own credentials here
@account_sid = 'AC043dcf9844e04758bc3a36a84c29761'
@auth_token = '62ea81de3a5b414154eb263595357c69'
\ No newline at end of file