You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-16
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# RabbitMQ HTTP API Client for Ruby
2
2
3
-
This gem is a [RabbitMQ HTTP API](http://hg.rabbitmq.com/rabbitmq-management/raw-file/450b7ea22cfd/priv/www/api/index.html) client for Ruby. It supports
3
+
This gem is a [RabbitMQ HTTP API]() client for Ruby. It supports
4
4
5
5
* Getting cluster overview information
6
6
* Getting cluster nodes status (# file descriptors used, RAM consumption and so on)
@@ -18,30 +18,44 @@ and will support more HTTP API features in the future
18
18
19
19
## Supported Ruby Versions
20
20
21
-
* CRuby 2.5 through 3.x
21
+
* CRuby 2.7 through 3.x
22
22
* JRuby 9K
23
23
24
24
## Supported RabbitMQ Versions
25
25
26
-
All [supported RabbitMQ release series](https://www.rabbitmq.com/versions.html).
26
+
This library targets [RabbitMQ release series covered by community support](https://www.rabbitmq.com/release-information).
27
27
28
-
All versions require [RabbitMQ Management UI plugin](http://www.rabbitmq.com/management.html) to be installed and enabled.
28
+
All versions require [RabbitMQ Management UI plugin](https://www.rabbitmq.com/docs/management/) to be installed and enabled.
29
29
30
30
## Installation
31
31
32
-
Add this line to your application's Gemfile:
32
+
Add this line to your application's Gemfile to
33
+
use the latest version of this library:
33
34
34
35
```ruby
36
+
# Depends on Faraday 2.x
37
+
gem 'rabbitmq_http_api_client', '>= 3.0.0'
38
+
```
39
+
40
+
If you **absolutely must** use Faraday 1.x, use the 2.x series:
0 commit comments