Sha256: 73844857f26a2d2cbf5a2bd603444fa207f000f955f1f5e36b790b5d1f717f02
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "tty/box/version" Gem::Specification.new do |spec| spec.name = "tty-box" spec.version = TTY::Box::VERSION spec.authors = ["Piotr Murach"] spec.email = [""] spec.summary = %q{Draw various frames and boxes in your terminal interface.} spec.description = %q{Draw various frames and boxes in your terminal interface.} spec.homepage = "https://piotrmurach.github.io/tty" spec.license = "MIT" spec.files = Dir['{lib,spec,examples}/**/*.rb'] spec.files += Dir['{bin,tasks}/*', 'tty-box.gemspec'] spec.files += Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt', 'Rakefile'] spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'pastel', '~> 0.7.2' spec.add_dependency 'tty-cursor', '~> 0.6.0' spec.add_dependency 'strings', '~> 0.1.4' spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tty-box-0.3.0 | tty-box.gemspec |
tty-box-0.2.1 | tty-box.gemspec |