Sha256: f922da923a58a07eae636808f67a7c16cf30109f4bc020cac748c08fdcc0cce5
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 KB
Contents
# 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 = 'support@getstream.io' 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|spec|\.github|scripts)/}) } end gem.required_ruby_version = '>=2.5.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' gem.add_dependency 'faraday-multipart' gem.add_dependency 'jwt' gem.add_development_dependency 'rake' gem.add_development_dependency 'rspec' gem.add_development_dependency 'simplecov' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stream-chat-ruby-2.18.0 | stream-chat.gemspec |