Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
ruby: ["3.0", "3.1", "3.4"]
ruby: ["3.0", "3.1", "3.4", "4.0"]
name: 💎 Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
Expand All @@ -21,10 +21,10 @@ jobs:
bundler-cache: true

- run: bundle exec rake rubocop
if: ${{ matrix.ruby == '3.4' }}
if: ${{ matrix.ruby == '4.0' }}

- run: bundle exec srb tc
if: ${{ matrix.ruby == '3.4' }}
if: ${{ matrix.ruby == '4.0' }}

- run: bundle exec rspec ./spec --require spec_helper
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ For the client-side integrations (web and mobile) have a look at the JavaScript,

## ⚙️ Installation

[`stream-chat-ruby`](https://rubygems.org/gems/stream-chat-ruby) supports Ruby version `3.0` and greater. We test against Ruby versions `3.0`, `3.1` and `3.4`.
[`stream-chat-ruby`](https://rubygems.org/gems/stream-chat-ruby) supports Ruby version `3.0` and greater. We test against Ruby versions `3.0`, `3.1`, `3.4` and 4.0.

```bash
$ gem install stream-chat-ruby
Expand Down
2 changes: 1 addition & 1 deletion stream-chat.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |gem|
}

gem.add_dependency 'faraday', '~> 2.12.2'
gem.add_dependency 'faraday-multipart', '~> 1.1.0'
gem.add_dependency 'faraday-multipart', '>=1.1.0'
gem.add_dependency 'faraday-net_http_persistent', '~> 2.3.0'
gem.add_dependency 'jwt', '~> 2.10'
gem.add_dependency 'net-http-persistent', '~> 4.0'
Expand Down