-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvendi.gemspec
35 lines (26 loc) · 1.18 KB
/
vendi.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
# frozen_string_literal: true
require_relative 'lib/vendi/version'
Gem::Specification.new do |spec|
spec.name = 'vendi'
spec.version = Vendi::VERSION
spec.authors = ['Piotr Stachyra']
spec.email = ['[email protected]']
spec.summary = 'CNFT Vending Machine - cardano-wallet based'
spec.description = 'CNFT Vending Machine - cardano-wallet based'
spec.homepage = 'https://github.com/piotr-iohk/vendi'
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.files = Dir['{bin,lib}/**/*', 'LICENSE.txt', 'README.md']
spec.bindir = 'bin'
spec.executables = ['vendi']
spec.require_paths = %w[lib bin]
spec.add_runtime_dependency 'cardano_wallet', '~> 0.3.28'
spec.add_runtime_dependency 'docopt', '~> 0.6.1'
spec.add_development_dependency 'rake', '12.3.3'
spec.add_development_dependency 'rspec', '3.11.0'
spec.metadata['rubygems_mfa_required'] = 'true'
end