README.md in twilio-ruby-5.2.2 vs README.md in twilio-ruby-5.2.3
- old
+ new
@@ -25,17 +25,17 @@
## Installation
To install using [Bundler][bundler] grab the latest stable version:
```ruby
-gem 'twilio-ruby', '~> 5.2.2'
+gem 'twilio-ruby', '~> 5.2.3'
```
To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
```bash
-gem install twilio-ruby -v 5.2.2
+gem install twilio-ruby -v 5.2.3
```
To build and install the development branch yourself from the latest source:
```bash
@@ -96,10 +96,11 @@
body: 'Hey there!'
)
```
### Customizing your HTTP Client
-twilio-ruby uses [Faraday][faraday] to make HTTP requests. You can tell Twilio::REST::Client to use any of the Faraday adapters like so:
+twilio-ruby uses [Faraday][faraday] to make HTTP requests. You can tell
+Twilio::REST::Client to use any of the Faraday adapters like so:
```ruby
@client.http_client.adapter = :typhoeus
```