Sha256: f97dd5141472625a2ca05ec4d42fa04d6bbf74203715b02c854f815958086ff0
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 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 = ["me@piotrmurach.com"] 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.required_ruby_version = ">= 2.0.0" spec.add_dependency "pastel", "~> 0.7.2" spec.add_dependency "tty-cursor", "~> 0.7" spec.add_dependency "strings", "~> 0.1.6" spec.add_development_dependency "bundler", ">= 1.5" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tty-box-0.5.0 | tty-box.gemspec |