Sha256: 00cbc8b8f5458cefc811e47cfb749a1efbdc6acf018c93c5bb56b958697f5b72
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# 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', '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) } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
key_tree-0.8.0 | key_tree.gemspec |