-
Notifications
You must be signed in to change notification settings - Fork 20
/
stream-chat.gemspec
35 lines (32 loc) · 1.49 KB
/
stream-chat.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'stream-chat/version'
Gem::Specification.new do |gem|
gem.name = 'stream-chat-ruby'
gem.description = 'Ruby client for Stream Chat.'
gem.version = StreamChat::VERSION
gem.platform = Gem::Platform::RUBY
gem.summary = 'The low level client for serverside calls for Stream Chat.'
gem.email = '[email protected]'
gem.homepage = 'http://github.com/GetStream/stream-chat-ruby'
gem.authors = ['getstream.io']
gem.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|sorbet|spec|\.github|scripts|assets)/}) }
end
gem.required_ruby_version = '>=2.7.0'
gem.metadata = {
'rubygems_mfa_required' => 'false',
'homepage_uri' => 'https://getstream.io/chat/docs/',
'bug_tracker_uri' => 'https://github.com/GetStream/stream-chat-ruby/issues',
'documentation_uri' => 'https://getstream.io/chat/docs/ruby/?language=ruby',
'changelog_uri' => 'https://github.com/GetStream/stream-chat-ruby/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/GetStream/stream-chat-ruby'
}
gem.add_dependency 'faraday', '~> 2.0.1'
gem.add_dependency 'faraday-multipart', '~> 1.0.4'
gem.add_dependency 'faraday-net_http_persistent', '~> 2.0.1'
gem.add_dependency 'jwt', '~> 2.3'
gem.add_dependency 'net-http-persistent', '~> 4.0'
gem.add_dependency 'sorbet-runtime', '~> 0.5.10539'
end