-
Notifications
You must be signed in to change notification settings - Fork 0
/
key_tree.gemspec
47 lines (38 loc) · 1.27 KB
/
key_tree.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'key_tree/version'
dev_deps = {
'bundler' => '~> 2.2.33',
'codecov' => '~> 0.5.0',
'pry' => '~> 0.14.0',
'rake' => '~> 13.0',
'rspec' => '~> 3.10',
'rubocop' => '~> 1.15',
'rubocop-rake' => '~> 0.5.1',
'rubocop-rspec' => '~> 2.3',
'ruby-prof' => '>= 1.4',
'simplecov' => '~> 0.21.0'
}
Gem::Specification.new do |spec|
spec.name = 'key_tree'
spec.version = KeyTree::VERSION
spec.authors = ['Calle Englund']
spec.email = ['calle@discord.bofh.se']
spec.summary = 'Manage trees of keys'
spec.homepage = 'https://github.com/notcalle/ruby-keytree'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 2.6', '< 4.0'
spec.add_dependency 'git-version-bump', '~> 0.17.0'
dev_deps.each { |d| spec.add_development_dependency(*d) }
spec.metadata = {
'rubygems_mfa_required' => 'true'
}
end