Skip to content

Commit 7dcddf2

Browse files
committed
Update readme for the supported version
1 parent 3c6823d commit 7dcddf2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# stream-chat-ruby
22

3-
[![build](https://github.com/GetStream/stream-chat-ruby/workflows/build/badge.svg)](https://github.com/GetStream/stream-chat-ruby/actions) [![Gem Version](https://badge.fury.io/rb/stream-chat-ruby.svg)](http://badge.fury.io/rb/stream-chat-ruby)
3+
[![build](https://github.com/GetStream/stream-chat-ruby/workflows/build/badge.svg)](https://github.com/GetStream/stream-chat-ruby/actions) [![Gem Version](https://badge.fury.io/rb/stream-chat-ruby.svg)](http://badge.fury.io/rb/stream-chat-ruby)
44

55
stream-chat-ruby is the official Ruby client for [Stream chat](https://getstream.io/chat/) a service for building chat applications.
66

77
You can sign up for a Stream account at https://getstream.io/chat/get_started/.
88

99
You can use this library to access chat API endpoints server-side. For the
10-
client-side integrations (web and mobile) have a look at the Javascript, iOS and
10+
client-side integrations (web and mobile) have a look at the JavaScript, iOS and
1111
Android SDK libraries (https://getstream.io/chat/).
1212

1313
### Installation
1414

1515
stream-chat-ruby supports:
1616

17-
- Ruby (2.7, 2.6, 2.5)
17+
- Ruby (3.0, 2.7, 2.6, 2.5)
1818

1919
#### Install
2020

@@ -165,6 +165,7 @@ client.remove_device(jane_phone['id'], jane_phone['user_id'])
165165
```
166166

167167
### Blocklists
168+
168169
```ruby
169170
# Create a blocklist
170171
client.create_blocklist('my_blocker', %w[fudge cream sugar])
@@ -180,6 +181,7 @@ client.delete_blocklist('my_blocker')
180181
```
181182

182183
### Export Channels
184+
183185
```ruby
184186
# Register an export
185187
response = client.export_channels({type: 'messaging', id: 'jane'})
@@ -190,6 +192,7 @@ status_response = client.get_export_channel_status(response['task_id'])
190192
```
191193

192194
### Rate limits
195+
193196
```ruby
194197
# Get all rate limits
195198
limits = client.get_rate_limits

0 commit comments

Comments
 (0)