Sha256: cd2eff83b12410fe9ecb673a014d628e25580b702e9d7754280f35f3e1a55596
Contents?: true
Size: 1.1 KB
Versions: 6
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rake_ssh/version' files = %w[ bin lib CODE_OF_CONDUCT.md rake_ssh.gemspec Gemfile LICENSE.txt Rakefile README.md ] Gem::Specification.new do |spec| spec.name = 'rake_ssh' spec.version = RakeSSH::VERSION spec.authors = ['InfraBlocks Maintainers'] spec.email = ['maintainers@infrablocks.io'] spec.summary = 'Rake tasks for managing SSH keys.' spec.description = 'Allows generation of SSH keys.' spec.homepage = 'https://github.com/infrablocks/rake_ssh' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").select do |f| f.match(/^(#{files.map { |g| Regexp.escape(g) }.join('|')})/) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.7' spec.add_dependency 'colored2', '~> 3.1' spec.add_dependency 'rake_factory', '~> 0.23' spec.add_dependency 'sshkey', '~> 2.0' spec.metadata['rubygems_mfa_required'] = 'false' end
Version data entries
6 entries across 6 versions & 1 rubygems