File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 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
55stream-chat-ruby is the official Ruby client for [ Stream chat] ( https://getstream.io/chat/ ) a service for building chat applications.
66
77You can sign up for a Stream account at https://getstream.io/chat/get_started/ .
88
99You 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
1111Android SDK libraries (https://getstream.io/chat/ ).
1212
1313### Installation
1414
1515stream-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
170171client.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
185187response = 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
195198limits = client.get_rate_limits
You can’t perform that action at this time.
0 commit comments