-
Notifications
You must be signed in to change notification settings - Fork 3
/
cardano-up.gemspec
47 lines (39 loc) · 2.07 KB
/
cardano-up.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
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true
require_relative 'lib/cardano-up/version'
Gem::Specification.new do |spec|
spec.name = 'cardano-up'
spec.version = CardanoUp::VERSION
spec.authors = ['Piotr Stachyra']
spec.email = ['piotr.stachyra@gmail.com']
spec.summary = 'Lightweight manager for Cardano binaries and configs.'
spec.description = 'Cardano Up lets you get all essential Cardano
tools on your system: cardano-node, cardano-cli, cardano-wallet,
cardano-addresses and bech32. Then easily manage configuration
for different environments and launch node and wallet services.'
spec.homepage = 'https://github.com/piotr-iohk/cardano-up'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
spec.metadata['allowed_push_host'] = 'https://rubygems.org/'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = spec.homepage
spec.metadata['rubygems_mfa_required'] = 'true'
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
# spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
# `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
# end
spec.files = Dir['{bin,lib}/**/*', 'LICENSE.txt', 'README.md']
# spec.test_files = Dir["spec/**/*"]
spec.bindir = 'bin'
# spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.executables = ['cardano-up']
spec.require_paths = %w[lib bin]
spec.add_runtime_dependency 'docopt', '~> 0.6.1'
spec.add_runtime_dependency 'file-tail', '~> 1.2.0'
spec.add_runtime_dependency 'httparty', '~> 0.21.0'
spec.add_runtime_dependency 'rubyzip', '~> 2.3.2'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rspec', '~> 3.11'
spec.add_development_dependency 'rubocop', '~> 1.46'
end