Sha256: d1c47f1a5869a80e3324ea09799ac8145d537a6d6bc63ef0eb39d4c9fbc6a4a3
Contents?: true
Size: 1.96 KB
Versions: 6
Compression:
Stored size: 1.96 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "tty/reader/version" Gem::Specification.new do |spec| spec.name = "tty-reader" spec.version = TTY::Reader::VERSION spec.authors = ["Piotr Murach"] spec.email = ["me@piotrmurach.com"] spec.summary = %q{A set of methods for processing keyboard input in character, line and multiline modes.} spec.description = %q{A set of methods for processing keyboard input in character, line and multiline modes. It maintains history of entered input with an ability to recall and re-edit those inputs. It lets you register to listen for keystroke events and trigger custom key events yourself.} spec.homepage = "https://piotrmurach.github.io/tty" spec.license = "MIT" if spec.respond_to?(:metadata=) spec.metadata = { "allowed_push_host" => "https://rubygems.org", "bug_tracker_uri" => "https://github.com/piotrmurach/tty-reader/issues", "changelog_uri" => "https://github.com/piotrmurach/tty-reader/blob/master/CHANGELOG.md", "documentation_uri" => "https://www.rubydoc.info/gems/tty-reader", "homepage_uri" => spec.homepage, "source_code_uri" => "https://github.com/piotrmurach/tty-reader" } end spec.files = Dir['{lib,spec,examples,benchmarks}/**/*.rb'] spec.files += Dir['{bin,tasks}/*', 'tty-reader.gemspec'] spec.files += Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt', 'Rakefile'] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = '>= 2.0.0' spec.add_dependency "wisper", "~> 2.0.0" spec.add_dependency "tty-screen", "~> 0.7" spec.add_dependency "tty-cursor", "~> 0.7" spec.add_development_dependency "bundler", ">= 1.5.0" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
6 entries across 6 versions & 2 rubygems