Sha256: 6f44c5e5a4e20b037c698e537862e7605d70fb53120f77c5f77f0edf49c74874

Contents?: true

Size: 1.32 KB

Versions: 10

Compression:

Stored size: 1.32 KB

Contents

# coding: utf-8

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "highline/version"

Gem::Specification.new do |spec|
  spec.name        = "highline"
  spec.version     = HighLine::VERSION
  spec.author      = "James Edward Gray II"
  spec.email       = "james@graysoftinc.com"

  spec.summary     = "HighLine is a high-level command-line IO library."
  spec.description = <<DESCRIPTION
A high-level IO library that provides validation, type conversion, and more for
command-line interfaces. HighLine also includes a complete menu system that can
crank out anything from simple list selection to complete shells with just
minutes of work.
DESCRIPTION
  spec.homepage    = "https://github.com/JEG2/highline"
  spec.license     = "Ruby"

  spec.files       = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.require_paths = ["lib"]

  spec.extra_rdoc_files = %w[README.md TODO Changelog.md LICENSE]

  spec.required_ruby_version = ">= 3.0"

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "minitest"
  spec.add_development_dependency "dry-types"

  spec.add_runtime_dependency "reline"

  spec.metadata["changelog_uri"] = spec.homepage + "/blob/master/Changelog.md"
end

Version data entries

10 entries across 9 versions & 3 rubygems

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.1.0/gems/highline-3.1.1/highline.gemspec
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.3.0/gems/highline-3.1.1/highline.gemspec
highline-3.1.2 highline.gemspec
brakeman-7.0.0 bundle/ruby/3.1.0/gems/highline-3.1.1/highline.gemspec
brakeman-6.2.2 bundle/ruby/3.1.0/gems/highline-3.1.1/highline.gemspec
brakeman-6.2.2.rc1 bundle/ruby/3.3.0/gems/highline-3.1.1/highline.gemspec
highline-3.1.1 highline.gemspec
brakeman-6.2.1 bundle/ruby/3.1.0/gems/highline-3.1.0/highline.gemspec
brakeman-6.2.0 bundle/ruby/3.1.0/gems/highline-3.1.0/highline.gemspec
highline-3.1.0 highline.gemspec