Removes Travis link from README

This commit is contained in:
iMacTia 2019-05-23 18:39:53 +01:00
parent 3acd1c8d31
commit c17f918425
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ end
## Supported Ruby versions
This library aims to support and is [tested against][travis] the following Ruby
This library aims to support and is [tested against][circle_ci] the following Ruby
implementations:
* Ruby 2.3+
@ -76,7 +76,7 @@ See [LICENSE][] for details.
[net_http]: ./docs/adapters/net_http.md
[persistent]: ./docs/adapters/net_http_persistent.md
[travis]: https://travis-ci.org/lostisland/faraday
[circle_ci]: https://circleci.com/gh/lostisland/faraday
[excon]: ./docs/adapters/excon.md
[patron]: ./docs/adapters/patron.md
[em-synchrony]: ./docs/adapters/em-synchrony.md

View File

@ -29,7 +29,7 @@ Since the default middleware stack uses `url_encoded` middleware and default ada
```ruby
conn = Faraday.new(url: 'http://sushi.com') do |faraday|
faraday.request :url_encoded # form-encode POST params
faraday.response :logger # log requests and responses to $stdout
faraday.response :logger # log requests and responses to $stdout
faraday.adapter Faraday.default_adapter # make requests with Net::HTTP
end
```