forked from jonatack/kraken_ruby_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kraken_ruby_client.gemspec
executable file
·34 lines (30 loc) · 1.43 KB
/
kraken_ruby_client.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'kraken_ruby_client/version'
Gem::Specification.new do |s|
s.name = 'kraken_ruby_client'
s.version = KrakenRubyClient::VERSION
s.date = '2016-09-25'
s.required_ruby_version = '>= 2.6'
s.homepage = 'https://rubygems.org/gems/kraken_ruby_client'
s.author = 'Jon Atack'
s.email = '[email protected]'
s.summary = 'Kraken Exchange API client written in Ruby'
s.post_install_message = 'Thanks for installing Kraken Ruby Client!'
s.license = 'LGPL-3.0'
s.files = `git ls-files`.split("\n")
s.require_path = 'lib'
s.description = <<-DESCRIPTION
A Kraken Exchange API wrapper for Ruby 2.4+. Emphasis on speed,
simplicity, no meta-programming, and few dependencies. Uses the fast
Curb gem (CUrl-RuBy, Ruby bindings for libcurl written in C) for HTTP.
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; see the LICENSE file for details.
Copyright (C) 2016-2021 Jon Atack <[email protected]>
DESCRIPTION
s.add_dependency 'curb', '~> 1.0'
s.add_development_dependency 'bundler', '~> 2.0'
s.add_development_dependency 'minitest', '~> 5.11'
s.add_development_dependency 'rake', '~> 12.3'
end