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
23 lines (22 loc) · 912 Bytes
/
stream.gemspec
File metadata and controls
23 lines (22 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
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 = "https://github.com/GetStream/stream-ruby"
gem.authors = ["Tommaso Barbugli", "Ian Douglas"]
gem.has_rdoc = true
gem.extra_rdoc_files = ["README.md", "LICENSE"]
gem.files = Dir["lib/**/*"]
gem.license = "BSD-3-Clause"
gem.add_dependency "faraday", "~> 0.10.0"
gem.add_dependency "http_signatures", "~> 0"
gem.add_dependency "jwt", "= 1.5.2"
gem.add_development_dependency "rake", "~> 0"
gem.add_development_dependency "rspec", "~> 2.10"
gem.add_development_dependency "simplecov", "~> 0.7"
end