-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcryptomarket-sdk.gemspec
More file actions
27 lines (23 loc) · 1 KB
/
cryptomarket-sdk.gemspec
File metadata and controls
27 lines (23 loc) · 1 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "cryptomarket-sdk"
s.version = "3.3.0"
s.platform = Gem::Platform::RUBY
s.authors = ["T. Ismael Verdugo"]
s.email = ["ismael@dysopsis.com"]
s.homepage = "https://github.com/cryptomkt/cryptomkt-ruby"
s.summary = %q{Cryptomarket sdk for ruby}
s.description = %q{Cryptomarket sdk for rest connection and websocket connection for the ruby language}
s.license = "Apache-2.0"
s.files = %w[LICENSE.md README.md] + Dir.glob('lib/**/*.rb')
s.add_dependency 'rest-client', '~> 2.1.0'
s.add_dependency 'faye-websocket', '~> 0.11.3'
s.add_dependency 'eventmachine', '~> 1.2.7'
s.add_dependency 'openssl', '~> 3.2.0'
s.add_development_dependency 'rubocop', '~> 1.60.2'
s.add_development_dependency 'test-unit', '~> 3.6.2'
s.extra_rdoc_files = %w[README.md]
s.rdoc_options = %w[--main README.md --markup markdown]
s.require_paths = %w[lib]
end