forked from yegor256/sibit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsibit.gemspec
More file actions
42 lines (39 loc) · 1.55 KB
/
Copy pathsibit.gemspec
File metadata and controls
42 lines (39 loc) · 1.55 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
# SPDX-FileCopyrightText: Copyright (c) 2019-2026 Yegor Bugayenko
# SPDX-License-Identifier: MIT
require 'English'
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require_relative 'lib/sibit/version'
Gem::Specification.new do |s|
if s.respond_to?(:required_rubygems_version=)
s.required_rubygems_version = Gem::Requirement.new('>= 0')
end
s.required_ruby_version = '>= 3.0'
s.name = 'sibit'
s.version = Sibit::VERSION
s.license = 'MIT'
s.summary = 'Simple Bitcoin Client'
s.description =
'This is a simple Bitcoin client, to use from command line ' \
'or from your Ruby app. You don\'t need to run any Bitcoin software, ' \
'no need to install anything, etc. All you need is just a command line ' \
'and Ruby 2.5+.'
s.authors = ['Yegor Bugayenko']
s.email = 'yegor256@gmail.com'
s.homepage = 'https://github.com/yegor256/sibit'
s.files = `git ls-files | grep -v -E '^(test/|\\.|renovate)'`.split($RS)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = ['README.md', 'LICENSE.txt']
s.add_dependency('backtrace', '~> 0.3')
s.add_dependency('decoor', '~> 0.1')
s.add_dependency('elapsed', '~> 0.2')
s.add_dependency('ellipsized', '~> 0.3')
s.add_dependency('iri', '~> 0.5')
s.add_dependency('json', '~> 2.18')
s.add_dependency('loog', '~> 0.6')
s.add_dependency('openssl', '~> 3.0')
s.add_dependency('retriable_proxy', '~> 1.0')
s.add_dependency('thor', '~> 1.3')
end