Sha256: 5fd18988bcd918c6e2cafaf58e0f26c953760a981041af030d0f829454b01a1f

Contents?: true

Size: 1.15 KB

Versions: 6

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ttytest/version'

Gem::Specification.new do |spec|
  spec.name          = 'ttytest2'
  spec.version       = TTYtest::VERSION
  spec.authors       = ['Alex Eski']
  spec.email         = ['alexeski@gmail.com']

  spec.summary       = 'ttytest2 is an integration test framework for interactive tty applications. Based on TTYtest!'
  spec.description   = 'ttytest2 allows running shell and/or cli applications inside of tmux and then making assertions on the output.'
  spec.homepage      = 'https://github.com/a-eski/ttytest2'
  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.required_ruby_version = '>= 3.2.3'

  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'minitest', '~> 5.0'
  spec.add_development_dependency 'rake', '~> 13.0'
  spec.add_development_dependency 'yard'
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ttytest2-0.9.0 ttytest2.gemspec
ttytest2-0.8.6 ttytest2.gemspec
ttytest2-0.8.5 ttytest2.gemspec
ttytest2-0.8.4 ttytest2.gemspec
ttytest2-0.8.3 ttytest2.gemspec
ttytest2-0.8.2 ttytest2.gemspec