Sha256: 0b6a2af9e99646c72941fb4129e6842fd186a1a02d70c41528d86d9b70965b8d

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

require_relative 'lib/getch/version'

Gem::Specification.new do |s|
  s.name = 'getch'
  s.version = Getch::VERSION
  s.platform = Gem::Platform::RUBY
  s.summary = 'A CLI tool to install Gentoo or VoidLinux.'
  s.author = 'szorfein'
  s.email = ['szorfein@protonmail.com']
  s.homepage = 'https://github.com/szorfein/getch'
  s.metadata = {
    'source_code_uri' => 'https://github.com/szorfein/getch',
    'changelog_uri' => 'https://github.com/szorfein/getch/blob/master/CHANGELOG.md',
    'bug_tracker_uri' => 'https://github.com/szorfein/getch/issues',
    'wiki_uri' => 'https://github.com/szorfein/getch'
  }
  s.license = 'MIT'
  s.required_ruby_version = '>= 2.6'

  s.files = Dir.glob('{assets,lib}/**/*', File::FNM_DOTMATCH).reject { |f| File.directory?(f) }

  s.files += %w[CHANGELOG.md LICENSE README.md]
  s.files += %w[getch.gemspec]

  s.bindir = 'bin'
  s.executables << 'getch'
  s.require_paths = ['lib']

  #s.cert_chain  = ['certs/szorfein.pem']
  #s.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
getch-0.11.0 getch.gemspec
getch-0.7.3 getch.gemspec