# encoding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'tty/version' Gem::Specification.new do |gem| gem.name = "tty" gem.version = TTY::VERSION gem.authors = ["Piotr Murach"] gem.email = [""] gem.description = %q{A toolbox for developing beautiful command line clients.} gem.summary = %q{A toolbox for developing beautiful command line clients. It provides a fluid interface for gathering input from the user, querying system and terminal and displaying information back.} gem.homepage = 'http://peter-murach.github.io/tty/' gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_development_dependency "bundler", "~> 1.5" end