forked from GetStream/stream-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstream.gemspec
More file actions
22 lines (21 loc) · 841 Bytes
/
stream.gemspec
File metadata and controls
22 lines (21 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'stream/version'
Gem::Specification.new do |gem|
gem.name = 'stream-ruby'
gem.description = 'Ruby client for getstream.io service'
gem.version = Stream::VERSION
gem.platform = Gem::Platform::RUBY
gem.summary = 'A gem that provides a client interface for getstream.io'
gem.email = 'support@getstream.io'
gem.homepage = 'http://github.com/GetStream/stream-ruby'
gem.authors = ['Tommaso Barbugli', 'Ian Douglas', 'Federico Ruggi']
gem.extra_rdoc_files = %w[README.md LICENSE]
gem.files = Dir['lib/**/*']
gem.license = 'BSD-3-Clause'
gem.required_ruby_version = '>=2.5.0'
gem.add_dependency 'faraday'
gem.add_dependency 'jwt'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'simplecov'
end