-
Notifications
You must be signed in to change notification settings - Fork 2
/
lnd-client.gemspec
37 lines (25 loc) · 1.22 KB
/
lnd-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
35
36
37
# frozen_string_literal: true
require_relative 'static/spec'
Gem::Specification.new do |spec|
spec.name = LNDClientInternal::Static::SPEC[:name]
spec.version = LNDClientInternal::Static::SPEC[:version]
spec.authors = [LNDClientInternal::Static::SPEC[:author]]
spec.summary = LNDClientInternal::Static::SPEC[:summary]
spec.description = LNDClientInternal::Static::SPEC[:description]
spec.homepage = LNDClientInternal::Static::SPEC[:documentation]
spec.license = LNDClientInternal::Static::SPEC[:license]
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = LNDClientInternal::Static::SPEC[:github]
spec.metadata['documentation_uri'] = LNDClientInternal::Static::SPEC[:documentation]
spec.metadata['bug_tracker_uri'] = LNDClientInternal::Static::SPEC[:issues]
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|
f.match(%r{\A(?:test|spec|docs|features)/})
end
end
spec.require_paths = ['ports/dsl']
spec.add_dependency 'grpc', '~> 1.53'
spec.metadata['rubygems_mfa_required'] = 'true'
end